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