import { Pressable } from 'react-native'; import type { ZestUIComponentProps } from '../../types'; /** * A backdrop for the popover, and the surface that dismisses it. * Renders a ``. * * Unlike `Dialog`, the popover has no separate viewport part: the backdrop is * both the (optional) dimming layer and the outside-press surface, matching * upstream, where `Popover.Backdrop` is what closes the popup. */ export declare function PopoverBackdrop(componentProps: PopoverBackdrop.Props): import("react").ReactElement>; export interface PopoverBackdropState { /** * Whether the popover is currently open. */ open: boolean; } export interface PopoverBackdropProps extends ZestUIComponentProps { } export declare namespace PopoverBackdrop { type State = PopoverBackdropState; type Props = PopoverBackdropProps; } //# sourceMappingURL=PopoverBackdrop.d.ts.map