import type { StoryObj } from "@storybook/react"; import React from "react"; import { type CheckboxProps } from "../index_with_tw_base"; type ExtendedCheckboxProps = CheckboxProps & { text?: string; description?: string; }; declare const meta: { title: string; component: React.ComponentType; parameters: { layout: string; }; argTypes: { size: { description: string; options: readonly ["xs", "sm"]; control: { type: "select"; }; table: { defaultValue: { summary: string; }; }; }; checked: { description: string; options: string[]; mapping: { readonly unchecked: false; readonly checked: true; readonly partial: "partial"; }; control: { type: "select"; }; table: { type: { summary: string; }; defaultValue: { summary: string; }; }; }; disabled: { description: string; control: "boolean"; }; className: { description: string; control: "text"; }; text: { description: string; control: "text"; }; description: { description: string; control: "text"; if: { arg: string; }; }; tooltip: { description: string; control: "text"; }; onChange: { description: string; action: string; }; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; //# sourceMappingURL=Checkbox.stories.d.ts.map