import React from 'react'; import { DimensionValue } from 'react-native'; export type ModalParams = { title?: string; direction?: 'left' | 'right' | 'top' | 'bottom' | 'fade' | 'none' | 'ios'; backgroundColor?: string; maskColor?: string; position?: 'center' | 'top' | 'bottom'; width?: DimensionValue; height?: DimensionValue; closable?: boolean; maskClosable?: boolean; cardBackgroundColor?: string; titleAlign?: 'left' | 'center' | 'right'; headerShown?: boolean; useSafeAreaInsets?: boolean; }; export type ModalTagProps = ModalParams & { id: string; children?: React.ReactNode; }; export declare const ModalScreen: React.FC; //# sourceMappingURL=Modal.d.ts.map