/// import { ButtonProps } from 'tea-component'; import { IFlowPopupProps } from '../../components'; import './style.css'; export interface IFlowCheckListPopupProps extends IFlowPopupProps { confirmButtonProps?: ButtonProps; confirmButtonText?: string; } /** 单双选弹窗(Popup)容器 */ export declare function FlowCheckListPopup(props: IFlowCheckListPopupProps): JSX.Element;