import * as React from 'react'; import * as PopupRedux from '../../../Redux/ActionsReducers/PopupRedux'; import { UIConfirmation } from '../../../Utilities/Interface/MessagePopups'; import { SimpleButtonProps } from '../../../components/SimpleButton'; import type { Action } from 'redux'; export interface DeleteButtonProps extends SimpleButtonProps { onConfirmWarning?: (confirmation: UIConfirmation) => PopupRedux.PopupShowConfirmationAction; ConfirmAction?: Action; ConfirmationMsg: string; ConfirmationTitle: string; onClickAction?: () => void; } export declare const ButtonDelete: React.FC;