/// import { Component } from "react"; interface Props { onClickPayed?: Function; onClickProblem?: Function; } declare class WaitPayInfoView extends Component { static defaultProps: { onClickPayed: () => void; onClickProblem: () => void; }; render(): JSX.Element; } export { WaitPayInfoView as default, WaitPayInfoView };