import { View } from 'react-native'; import type { ZestUIComponentProps } from '../../types'; /** * Shown when no items match the current query. * Renders a ``, or nothing when there are matches. */ export declare function ComboboxEmpty(componentProps: ComboboxEmpty.Props): import("react").ReactElement> | null; export interface ComboboxEmptyState { /** * Whether the list is currently open. */ open: boolean; /** * Whether nothing matched the query. Only useful with `keepMounted`, since * otherwise this part only renders when it is `true`. */ empty: boolean; } export interface ComboboxEmptyProps extends ZestUIComponentProps { /** * Whether to keep the element mounted while something still matches, so it * can be hidden with a style instead. Required to animate it out — nothing in * React Native can report that an exit animation finished. * @default false */ keepMounted?: boolean | undefined; } export declare namespace ComboboxEmpty { type State = ComboboxEmptyState; type Props = ComboboxEmptyProps; } //# sourceMappingURL=ComboboxEmpty.d.ts.map