import { Story } from '@storybook/react'; import { SelectProps } from './Select'; declare const _default: { title: string; component: ({ onChange, disabled, placeholder, options, name, selected, autoFocus, }: SelectProps) => JSX.Element; argTypes: { selected: { control: { type: string; options: string[]; }; }; options: { table: { disable: boolean; }; }; onChange: { table: { disable: boolean; }; action: (e: any) => any; }; }; }; export default _default; export declare const Demo: Story;