/// import React from 'react'; import { LayoutChangeEvent, StyleProp, View, ViewStyle, TextStyle } from 'react-native'; import { ModalPropsType } from './PropsType'; import { IModalStyle } from './style/index.native'; export interface IModalNativeProps extends ModalPropsType { styles?: IModalStyle; style?: StyleProp; bodyStyle?: StyleProp; } declare class AntmModal extends React.Component { static defaultProps: { visible: boolean; closable: boolean; maskClosable: boolean; style: {}; bodyStyle: {}; animationType: string; onClose(): void; footer: never[]; transparent: boolean; popup: boolean; animateAppear: boolean; styles: any; operation: boolean; }; static alert: any; static operation: any; static prompt: any; root: View | null; onFooterLayout: (e: LayoutChangeEvent) => void; saveRoot: (root: any) => void; render(): JSX.Element; } export default AntmModal;