import { type VariantProps } from 'class-variance-authority'; import { RouteLocationRaw } from 'vue-router'; import { Icon } from '../../types'; declare const button: (props?: ({ variant?: "default" | "destructive" | "link" | "outline" | "ghost" | null | undefined; size?: "sm" | "lg" | "default" | "icon" | null | undefined; icon?: boolean | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; type ButtonProps = VariantProps; type __VLS_Props = { variant?: ButtonProps['variant']; size?: ButtonProps['size']; solid?: boolean; solidAppend?: boolean; primary?: boolean; flat?: boolean; selected?: boolean; icon?: Icon; iconAppend?: Icon; dangerous?: boolean; to?: RouteLocationRaw; small?: boolean; disabled?: boolean; loading?: boolean; }; declare var __VLS_12: {}; type __VLS_Slots = {} & { default?: (props: typeof __VLS_12) => any; }; declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, { el: import("vue").Ref; }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const _default: __VLS_WithSlots; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };