import type { StoryObj } from '@storybook/react'; import RoundedCheckBox from './RoundedCheckBox'; declare const meta: { component: typeof RoundedCheckBox; tags: string[]; args: { checkedColor: string; uncheckedColor: string; disabledColor: string; size: string; errorColor: string; }; }; export default meta; type Story = StoryObj; export declare const Uncheked: Story; export declare const Checked: Story; export declare const Error: Story; export declare const Disabled: Story; export declare const ErrorColor: Story; export declare const DifferentColors: Story;