import { StoryObj } from '@storybook/react'; import { default as PasswordEye } from '../PasswordEye'; declare const meta: { component: typeof PasswordEye; title: string; parameters: { docs: { description: { component: string; }; }; }; argTypes: { externalStyle: { description: string; control: { type: "object"; }; }; sizeC: { description: string; control: { type: "select"; options: string[]; }; table: { defaultValue: { summary: string; }; }; }; systemMessage: { description: string; control: { type: "select"; options: string[]; }; }; themeType: { description: string; control: { type: "select"; }; options: ("primary" | "accent" | "secondary" | "info" | "success" | "warning" | "error" | "transparent" | undefined)[]; table: { defaultValue: { summary: "primary" | "accent" | "secondary" | "info" | "success" | "warning" | "error" | "transparent"; }; }; }; layer: { description: string; control: { type: "range"; min: number; max: number; }; table: { defaultValue: { summary: string; }; }; }; isShow: { description: string; control: { type: "boolean"; }; table: { defaultValue: { summary: string; }; }; }; onClick: { description: string; action: string; }; customEyeOpen: { description: string; control: { type: "object"; }; }; customEyeCrossed: { description: string; control: { type: "object"; }; }; }; }; export default meta; type Story = StoryObj; export declare const Primary: Story;