import { StoryObj } from '@storybook/react'; import { default as FancyCodeVerificationInput } from '../FancyCodeVerificationInput'; declare const meta: { title: string; component: typeof FancyCodeVerificationInput; parameters: { docs: { description: { component: string; }; }; }; argTypes: { handler: { description: string; control: { type: "object"; }; }; length: { description: string; control: { type: "number"; }; table: { defaultValue: { summary: string; }; }; }; automaticCase: { description: string; control: { type: "radio"; options: (string | undefined)[]; }; table: { defaultValue: { summary: undefined; }; }; }; debounceTime: { description: string; control: { type: "number"; }; table: { defaultValue: { summary: string; }; }; }; isSuccess: { description: string; control: { type: "boolean"; }; table: { defaultValue: { summary: string; }; }; }; errorMessage: { description: string; control: { type: "text"; }; }; }; }; export default meta; type Story = StoryObj; export declare const Primary: Story;