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