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