import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ mask?: string; label?: string; disabled?: boolean; status?: "default" | "error" | "success" | "warning"; helperText?: string; size?: "sm" | "md" | "lg"; }, {}, "">; tags: string[]; argTypes: { mask: { control: "text"; }; label: { control: "text"; }; disabled: { control: "boolean"; }; status: { control: "select"; options: string[]; }; helperText: { control: "text"; }; size: { control: "select"; options: string[]; }; }; args: { mask: string; label: string; disabled: false; status: "default"; size: "md"; }; }; export default meta; type Story = StoryObj; export declare const Phone: Story; export declare const Date: Story; export declare const CreditCard: Story; export declare const ZipCode: Story;