import type { FC } from 'react'; import React from 'react'; import type { ModalProps } from '../interface'; export interface NormalCancelBtnProps extends Pick { cancelTextLocale?: string | number | true | React.ReactElement> | Iterable; } declare const NormalCancelBtn: FC; export default NormalCancelBtn;