You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
627 B

import type { ExtractPropTypes } from 'vue';
import type buttonGroup from './button-group.vue';
export declare const buttonGroupProps: {
readonly size: import("../../../utils/props").BuildPropReturn<StringConstructor, "", false, "" | "small" | "default" | "large", never>;
readonly type: import("../../../utils/props").BuildPropReturn<StringConstructor, "", unknown, "" | "default" | "primary" | "success" | "warning" | "info" | "danger" | "text", unknown>;
};
export declare type ButtonGroupProps = ExtractPropTypes<typeof buttonGroupProps>;
export declare type ButtonGroupInstance = InstanceType<typeof buttonGroup>;