import { StoryObj } from '@storybook/html';
import { SwitchProps } from './Switch';
declare const meta: {
    title: string;
    render: (args: SwitchProps) => DocumentFragment;
    argTypes: {
        size: {
            control: string;
            options: string[];
        };
        value: {
            control: string;
        };
        onChange: {
            action: string;
        };
    };
};
export default meta;
type Story = StoryObj<SwitchProps>;
export declare const Normal: Story;
