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?: React.ReactNode; } declare const ConfirmOkBtn: FC; export default ConfirmOkBtn;