import { Meta, StoryObj } from '@storybook/react'; import { ISelectProps } from './types'; declare const meta: Meta; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Transparent: Story; export declare const NoLabel: Story; export declare const Placeholder: Story; export declare const Error: Story; export declare const ErrorAsMessage: Story; export declare const Disabled: Story; export declare const Slots: Story; /** * This story mocks react-hook-form behavior * Where we set default values for the select as '' to show placeholder */ export declare const Controlled: Story; //# sourceMappingURL=Select.stories.d.ts.map