import type { StoryObj } from '@storybook/vue3';
declare const meta: {
    title: string;
    component: import("vue").DefineComponent<{
        id: {
            type: StringConstructor;
            default: () => string;
            description: string;
        };
        submit: {
            type: BooleanConstructor;
            default: boolean;
            description: string;
        };
        loading: {
            type: BooleanConstructor;
            default: boolean;
            description: string;
        };
        disabled: {
            type: BooleanConstructor;
            default: boolean;
            description: string;
        };
        size: {
            type: StringConstructor;
            control: {
                type: string;
            };
            options: string[];
            validator: (val: string) => boolean;
            default: string;
            description: string;
        };
        color: {
            type: StringConstructor;
            control: {
                type: string;
            };
            options: string[];
            validator: (val: string) => boolean;
            default: string;
            description: string;
        };
        link: {
            type: BooleanConstructor;
            default: boolean;
            description: string;
        };
        neon: {
            type: BooleanConstructor;
            default: boolean;
            description: string;
        };
        uppercase: {
            type: BooleanConstructor;
            default: boolean;
            description: string;
        };
        outline: {
            type: BooleanConstructor;
            default: boolean;
            description: string;
        };
        zoom: {
            type: BooleanConstructor;
            default: boolean;
            description: string;
        };
        icon: {
            type: import("vue").PropType<string | string[]>;
            default: string;
            description: string;
        };
        iconType: {
            type: StringConstructor;
            control: {
                type: string;
            };
            options: string[];
            validator: (val: string) => boolean;
            default: string;
            description: string;
        };
        to: {
            type: import("vue").PropType<import("vue-router").RouteLocationRaw>;
            default: string;
            description: string;
        };
    }, {
        buttonClasses: import("vue").ComputedRef<string[]>;
        type: import("vue").ComputedRef<"button" | "submit">;
        hasSlot: (name: string) => boolean;
        click: (event: any) => void;
    }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
        id: {
            type: StringConstructor;
            default: () => string;
            description: string;
        };
        submit: {
            type: BooleanConstructor;
            default: boolean;
            description: string;
        };
        loading: {
            type: BooleanConstructor;
            default: boolean;
            description: string;
        };
        disabled: {
            type: BooleanConstructor;
            default: boolean;
            description: string;
        };
        size: {
            type: StringConstructor;
            control: {
                type: string;
            };
            options: string[];
            validator: (val: string) => boolean;
            default: string;
            description: string;
        };
        color: {
            type: StringConstructor;
            control: {
                type: string;
            };
            options: string[];
            validator: (val: string) => boolean;
            default: string;
            description: string;
        };
        link: {
            type: BooleanConstructor;
            default: boolean;
            description: string;
        };
        neon: {
            type: BooleanConstructor;
            default: boolean;
            description: string;
        };
        uppercase: {
            type: BooleanConstructor;
            default: boolean;
            description: string;
        };
        outline: {
            type: BooleanConstructor;
            default: boolean;
            description: string;
        };
        zoom: {
            type: BooleanConstructor;
            default: boolean;
            description: string;
        };
        icon: {
            type: import("vue").PropType<string | string[]>;
            default: string;
            description: string;
        };
        iconType: {
            type: StringConstructor;
            control: {
                type: string;
            };
            options: string[];
            validator: (val: string) => boolean;
            default: string;
            description: string;
        };
        to: {
            type: import("vue").PropType<import("vue-router").RouteLocationRaw>;
            default: string;
            description: string;
        };
    }>> & {
        onClick?: ((...args: any[]) => any) | undefined;
    }, {
        link: boolean;
        id: string;
        color: string;
        size: string;
        neon: boolean;
        loading: boolean;
        icon: string | string[];
        zoom: boolean;
        submit: boolean;
        disabled: boolean;
        uppercase: boolean;
        iconType: string;
        outline: boolean;
        to: import("vue-router").RouteLocationRaw;
    }, {}>;
    argTypes: any;
    parameters: {
        options: {
            showPanel: boolean;
        };
    };
};
type Story = StoryObj<typeof meta>;
export declare const Estandar: Story;
export declare const Color: Story;
export declare const Neon: Story;
export default meta;
