import { Meta, StoryObj } from '@storybook/web-components';
import { ModusSize } from '../types';
interface SwitchArgs {
    'custom-class'?: string;
    disabled?: boolean;
    indeterminate?: boolean;
    'input-id'?: string;
    'input-tab-index'?: number;
    label?: string;
    name?: string;
    required?: boolean;
    size?: ModusSize | 'xs';
    value: boolean;
}
declare const meta: Meta<SwitchArgs>;
export default meta;
type Story = StoryObj<SwitchArgs>;
export declare const Default: Story;
export declare const ShadowDomParent: Story;
export declare const Migration: Story;
