import { ButtonColor, ButtonElementType, ButtonIconType, TIcon } from '../../types'; interface IProps { /** @description type of Button */ type?: ButtonIconType; /** @description button color scheme */ color?: ButtonColor; /** @description icon class name (VC-Icons) */ icon?: TIcon; /** @description data-test-name property */ dataTestName?: string; /** @description Hover Spin Animation for VcButtonIcon */ animate?: boolean; /** @description whether to disable the button */ disabled?: boolean; /** @description Small size for VcButtonIcon */ small?: boolean; plain?: boolean; hoverless?: boolean; buttonType?: ButtonElementType; circle?: boolean; filled?: boolean; filledColor?: ButtonColor | 'light'; loading?: boolean; loadingIcon?: TIcon; } declare const _default: __VLS_WithTemplateSlots, { /** @description type of Button */ type: string; /** @description button color scheme */ color: string; /** @description icon class name (VC-Icons) */ icon: string; /** @description Hover Spin Animation for VcButtonIcon */ animate: boolean; /** @description whether to disable the button */ disabled: boolean; /** @description Small size for VcButtonIcon */ small: boolean; plain: boolean; hoverless: boolean; dataTestName: string; buttonType: string; filledColor: string; loadingIcon: string; }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { click: (pl: MouseEvent) => void; }, string, import("vue").PublicProps, Readonly, { /** @description type of Button */ type: string; /** @description button color scheme */ color: string; /** @description icon class name (VC-Icons) */ icon: string; /** @description Hover Spin Animation for VcButtonIcon */ animate: boolean; /** @description whether to disable the button */ disabled: boolean; /** @description Small size for VcButtonIcon */ small: boolean; plain: boolean; hoverless: boolean; dataTestName: string; buttonType: string; filledColor: string; loadingIcon: string; }>>> & Readonly<{ onClick?: ((pl: MouseEvent) => any) | undefined; }>, { small: boolean; animate: boolean; icon: TIcon; color: "" | "success" | "warning" | "primary" | "secondary" | "destructive" | "active" | "primary-alternative"; type: ButtonIconType; disabled: boolean; dataTestName: string; buttonType: ButtonElementType; plain: boolean; hoverless: boolean; filledColor: "" | "success" | "warning" | "primary" | "secondary" | "destructive" | "active" | "primary-alternative" | "light"; loadingIcon: TIcon; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, { default?(_: {}): any; }>; export default _default; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType<__VLS_NonUndefinedable>; } : { type: import('vue').PropType; required: true; }; }; type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; type __VLS_Prettify = { [K in keyof T]: T[K]; } & {}; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };