import type { Meta, StoryObj } from '@storybook/react'; import Checkbox from './Checkbox'; /** The `Checkbox` component allows users to toggle between checked and unchecked states. */ declare const meta: Meta; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Checked: Story; export declare const DefaultWithLabel: Story; export declare const CheckedWithLabel: Story; export declare const DisabledNoLabel: Story; export declare const DisabledUnchecked: Story; export declare const DisabledChecked: Story; export declare const MixedState: Story; export declare const MixedStateWithLabel: Story; export declare const MixedStateWithLabelDisabled: Story; //# sourceMappingURL=Checkbox.stories.d.ts.map