@attio/react-native-bottom-sheet-toolbox
Version:
8 lines • 457 B
TypeScript
import { type ModalProps, type NativeSyntheticEvent } from "react-native";
interface ModalPortalProps extends Pick<ModalProps, "visible" | "onDismiss" | "children" | "onShow"> {
onRequestClose: (event: NativeSyntheticEvent<any>) => void;
}
declare function ModalPortalIos({ children, ...rest }: ModalPortalProps): import("react").JSX.Element;
export declare const ModalPortal: typeof ModalPortalIos;
export {};
//# sourceMappingURL=modal-portal.d.ts.map