import React, { Component } from 'react'; interface BottomDialogProps { prefixCls?: string; title?: string; titleStyle?: React.CSSProperties; visible: false; closeDialog: any; } export default class BottomDialog extends Component { constructor(props: any); static defaultProps: { prefixCls: string; title: string; visible: boolean; }; onClose: () => void; render(): JSX.Element; } export {};