import React from 'react'; import { FC } from 'iglooform/es/types'; import { IProps as RadioProps } from 'iglooform/es/radio'; import { ModalProps } from 'antd/lib/modal'; import './style'; export declare type ParamsProps = { reason?: string; listReason?: string; otherReason?: string; }; export interface IProps extends ModalProps { handleOk: (params: ParamsProps) => void; desc?: React.ReactNode; onlyReason?: boolean; reasonList?: RadioProps['options']; withOtherReason?: boolean; } declare const RejectModal: FC; export default RejectModal;