import { default as React } from 'react'; import { StoryObj } from '@storybook/react'; declare const meta: { component: React.ForwardRefExoticComponent>; title: string; parameters: { docs: { description: { component: string; }; }; }; argTypes: { value: { description: string; type: { name: "string"; }; }; align: { description: string; control: { type: "radio"; }; table: { defaultValue: { summary: string; }; }; }; customEyeCrossed: { description: string; }; customEyeOpen: { description: 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; }; }; }; }; }; export default meta; type Story = StoryObj; export declare const Primary: Story;