/// interface IProps { planCode?: string; visible: boolean; onVisibleChange: (state: any) => void; onOk: () => void; okProps?: { loading?: boolean; }; } declare function SecondConfirm(props: IProps): JSX.Element; export default SecondConfirm;