import { Story } from '@storybook/react'; import { CheckboxProps } from './Checkbox'; declare const _default: { title: string; component: ({ checked, children, disabled, name, onChange, size, value, ...other }: CheckboxProps) => JSX.Element; argTypes: { name: { table: { disable: boolean; }; }; value: { table: { disable: boolean; }; }; children: { table: { disable: boolean; }; }; onChange: { table: { disable: boolean; }; action: string; }; className: { table: { disable: boolean; }; }; style: { table: { disable: boolean; }; }; }; }; export default _default; export declare const Checkbox: Story;