import type { StoryObj } from '@storybook/react'; import RoundedSmartSelect from './RoundedSmartSelect'; declare const meta: { component: typeof RoundedSmartSelect; tags: string[]; args: { searchable: false; 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 Focused: Story; export declare const FocusedSearchable: Story; export declare const SearchableWithOptions: Story; export declare const SearchableWithSearchAndOptions: Story; export declare const Loading: Story; export declare const LoadingOpened: Story; export declare const SearchableLoadingOpened: Story; export declare const WithValueandLabel: Story; export declare const Full: Story; export declare const Error: Story; export declare const ErrorColor: Story; export declare const DifferentColors: Story;