import * as React from 'react'; import type { ZestPortalModalProps } from '../../types'; /** * Moves the popup to the top of the app, as an RN `Modal` like the rest of the * popup family. */ export declare function ComboboxPortal(props: ComboboxPortal.Props): React.JSX.Element | null; export interface ComboboxPortalProps { children?: React.ReactNode; /** * Whether to keep the portal mounted while the list is closed. * @default false */ keepMounted?: boolean | undefined; /** * Props forwarded to the underlying React Native `Modal`. Lets you replace * the default `animationType="none"` with a native `"fade"`/`"slide"`, or reach * the rest of the Modal API. * `visible` stays owned by the combobox's open state, and `onRequestClose` is * chained rather than replaced. */ modalProps?: ZestPortalModalProps | undefined; } export declare namespace ComboboxPortal { type Props = ComboboxPortalProps; } //# sourceMappingURL=ComboboxPortal.d.ts.map