import type { FC } from 'react'; import React from 'react'; import type { ConfirmDialogProps } from '../ConfirmDialog'; export interface ConfirmOkBtnProps extends Pick { autoFocusButton?: false | 'ok' | 'cancel' | null; okTextLocale?: string | number | true | React.ReactElement> | Iterable; } declare const ConfirmOkBtn: FC; export default ConfirmOkBtn;