import React from "react"; import { type StoryObj } from "@storybook/react-vite"; import CheckboxDocumentation from "./Checkbox.docs.mdx"; declare const meta: { title: string; component: React.ForwardRefExoticComponent>; parameters: { docs: { page: typeof CheckboxDocumentation; }; }; }; export default meta; type Story = StoryObj; export declare const Base: { args: { text: string; isChecked: boolean; }; }; export declare const IsChecked: { args: { text: string; isChecked: boolean; }; }; export declare const IsIndeterminate: { args: { text: string; isIndeterminate: boolean; }; }; export declare const IsDisabled: { args: { text: string; isDisabled: boolean; isChecked: boolean; }; }; export declare const Error: { args: { text: string; error: boolean; }; }; export declare const Explanation: { args: { text: string; explanation: string; isChecked: boolean; }; render: (args: any) => React.JSX.Element; }; export declare const ExplanationDisabled: { args: { text: string; explanation: string; isDisabled: boolean; }; }; export declare const CustomLabel: Story;