import type { StoryObj } from '@storybook/react'; import { type ComboboxSelectProps } from './ComboboxSelect'; declare const meta: { title: string; component: ({ id, options, value, onChange, isDisabled, placeholder, dataUieName, onCreateOption, createOptionLabel, noOptionsMessage, label, labelVisuallyHidden, required, menuPortalTarget, menuPosition, menuListCSS, isLoading, loadingMessage, closeMenuOnSelect, }: ComboboxSelectProps) => import("@emotion/react/jsx-runtime").JSX.Element; parameters: { layout: string; }; decorators: ((Story: import("@storybook/core/csf").PartialStoryFn void; isDisabled?: boolean; placeholder?: string; dataUieName?: string; onCreateOption?: (inputValue: string) => void; createOptionLabel?: (inputValue: string) => string; noOptionsMessage: string; label?: string; labelVisuallyHidden?: boolean; required?: boolean; menuPortalTarget?: HTMLElement; menuPosition?: import("react-select").MenuPosition; menuListCSS?: import("@emotion/serialize").CSSObject; isLoading?: boolean; loadingMessage?: string; closeMenuOnSelect?: boolean; }>) => import("@emotion/react/jsx-runtime").JSX.Element)[]; tags: string[]; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const WithValue: Story; export declare const Disabled: Story; export declare const Creatable: Story; export declare const WithLabel: Story; export declare const Loading: Story; export declare const WithLabelVisuallyHidden: Story; //# sourceMappingURL=ComboboxSelect.stories.d.ts.map