import { type PropsWithChildren } from "react"; type BackdropProps = { onPress: () => void; transparent: boolean; } & PropsWithChildren; export default function Backdrop({ onPress, transparent, children, }: BackdropProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=backdrop.d.ts.map