import { Pressable } from 'react-native'; import type { ZestUIComponentProps } from '../../types'; /** * A backdrop for the select popup, and the surface that dismisses it. * Renders a ``. */ export declare function SelectBackdrop(componentProps: SelectBackdrop.Props): import("react").ReactElement>; export interface SelectBackdropState { open: boolean; } export interface SelectBackdropProps extends ZestUIComponentProps { } export declare namespace SelectBackdrop { type State = SelectBackdropState; type Props = SelectBackdropProps; } //# sourceMappingURL=SelectBackdrop.d.ts.map