import { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType } from 'vue'; import type { ButtonSize, ButtonVariant, IconName } from '../../types'; type ButtonState = 'default' | 'danger'; type ButtonProps = { as?: 'button' | 'div' | 'span'; size?: ButtonSize; label?: string; variant?: ButtonVariant; state?: ButtonState; padding?: string; loading?: boolean; disabled?: boolean; icon?: IconName; leadingIcon?: IconName; trailingIcon?: IconName; }; declare const _default: __VLS_WithTemplateSlots, { as: string; size: string; variant: string; state: string; padding: string; loading: boolean; disabled: boolean; }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly, { as: string; size: string; variant: string; state: string; padding: string; loading: boolean; disabled: boolean; }>>>, { padding: string; disabled: boolean; as: "button" | "div" | "span"; size: ButtonSize; variant: ButtonVariant; state: ButtonState; loading: boolean; }, {}>, { default?(_: {}): any; }>; export default _default; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: PropType<__VLS_NonUndefinedable>; } : { type: 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; }; };