import type { StoryObj } from '@storybook/react'; import RoundedSelect from './RoundedSelect'; declare const meta: { component: typeof RoundedSelect; tags: string[]; args: { focusColor: string; helperTextColor: string; outlineColor: string; backgroundColor: string; color: string; readOnly: false; borderRadius: number; fontSize: string; errorColor: string; fontWeight: string; cantEdit: false; }; }; export default meta; type Story = StoryObj; export declare const Empty: Story; export declare const Default: Story; export declare const ValueAndLabel: Story; export declare const Full: Story; export declare const Error: Story; export declare const ErrorColor: Story; export declare const DifferentColors: Story;