import type { StoryFn } from "@storybook/react"; import React from "react"; declare const _default: import("@storybook/types").ComponentAnnotations void) | undefined; scrollingContainer?: Element | undefined; defaultItems?: Iterable | undefined; items?: Iterable | undefined; onOpenChange?: ((isOpen: boolean, menuTrigger?: import("@react-types/combobox").MenuTriggerAction | undefined) => void) | undefined; inputValue?: string | undefined; defaultInputValue?: string | undefined; onInputChange?: ((value: string) => void) | undefined; allowsCustomValue?: boolean | undefined; menuTrigger?: import("@react-types/combobox").MenuTriggerAction | undefined; children: import("@react-types/shared").CollectionChildren; disabledKeys?: Iterable | undefined; onSelectionChange?: ((key: React.Key) => any) | undefined; selectedKey?: React.Key | null | undefined; defaultSelectedKey?: React.Key | undefined; isDisabled?: boolean | undefined; isReadOnly?: boolean | undefined; placeholder?: string | undefined; isRequired?: boolean | undefined; isInvalid?: boolean | undefined; validationState?: import("react-stately").ValidationState | undefined; autoFocus?: boolean | undefined; onFocus?: ((e: React.FocusEvent) => void) | undefined; onBlur?: ((e: React.FocusEvent) => void) | undefined; onFocusChange?: ((isFocused: boolean) => void) | undefined; onKeyDown?: ((e: import("@react-types/shared").KeyboardEvent) => void) | undefined; onKeyUp?: ((e: import("@react-types/shared").KeyboardEvent) => void) | undefined; label?: React.ReactNode; description?: React.ReactNode; errorMessage?: React.ReactNode; }>; export default _default; /** * This example showcases the autocomplete functionalities with as little customizations as possible. * Please note that **options aren't styled by default**; we're applying some default styling here, that you can see by clicking the "Show code" button. * * _Ensuring that the options are tall enough and spaced enough to be clickable also on mobile devices is your responsibility when using this component._ */ export declare const Unstyled: StoryFn; /** * This example showcases a possible, real world product use-case. [It uses a real API](https://rickandmortyapi.com/). * * This example is useful for seeing how to deal with asynchronous lists, how to infinitely load the data, and how to customize the options to look as intended. */ export declare const RealWorldAsyncExample: StoryFn; export declare const CustomPortalContainer: StoryFn;