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