/// import { ComponentStory } from '@storybook/react'; declare const Story: { title: string; component: ({ name, label, placeholder, error, options, onSelect, value, disabled, }: import("./NativeDropdown").Props) => JSX.Element; argTypes: { name: { type: { required: boolean; }; description: string; control: { type: string; }; }; label: { name: string; type: { name: string; required: boolean; }; defaultValue: string; description: string; table: { type: { summary: string; }; defaultValue: { summary: string; }; }; control: { type: string; }; }; placeholder: { name: string; type: { name: string; required: boolean; }; defaultValue: string; table: { type: { summary: string; }; defaultValue: { summary: string; }; }; control: { type: string; }; }; value: { description: string; control: { type: string; }; }; error: { control: { type: string; }; }; options: { defaultValue: ({ label: string; value: null; } | { label: string; value: string; })[]; table: { type: { summary: { label: string; value: string; }[]; }; defaultValue: { summary: ({ label: string; value: null; } | { label: string; value: string; })[]; }; }; }; }; }; export default Story; export declare const Default: ComponentStory<({ name, label, placeholder, error, options, onSelect, value, disabled, }: import("./NativeDropdown").Props) => JSX.Element>;