import PropTypes from 'prop-types'; import React from 'react'; import { ViewStyle } from 'react-native'; declare class BlankPage extends React.Component { static contextType: React.Context & { theme: import("../../styles/themes/ITheme").default; }>; static propTypes: { type: PropTypes.Requireable; icon: PropTypes.Requireable; underline: PropTypes.Requireable; button: PropTypes.Requireable; iconStyle: PropTypes.Validator> | undefined; message: PropTypes.Validator; desc: PropTypes.Requireable; extraInfo: PropTypes.Requireable; accessible: PropTypes.Requireable; accessibilityHint: PropTypes.Requireable; accessibilityLabel: PropTypes.Requireable; }; static defaultProps: { type: string; underline: {}; button: {}; icon: any; }; constructor(props: any); static TYPE: { BUTTON: string; UNDERLINE: string; }; renderCenter(): JSX.Element; renderBottom(): JSX.Element; onPress(callback: any): void; render(): JSX.Element; } export default BlankPage;