import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ length?: number; value?: string; label?: string; helperText?: string; status?: "default" | "error" | "success"; disabled?: boolean; type?: "text" | "number" | "password"; }, {}, "">; tags: string[]; argTypes: { length: { control: "number"; }; label: { control: "text"; }; helperText: { control: "text"; }; status: { control: "select"; options: string[]; }; disabled: { control: "boolean"; }; type: { control: "select"; options: string[]; }; }; args: { length: number; label: string; helperText: string; status: "default"; disabled: false; type: "number"; }; }; export default meta; type Story = StoryObj; export declare const FourDigits: Story; export declare const SixDigits: Story; export declare const PasswordMasked: Story; export declare const WithError: Story;