import React from 'react'; import { ViewName } from '../../types'; declare type ConfirmationPropsType = { className: string; shouldShow: boolean; viewName: ViewName; onCancel: () => void; onDelete: () => void; }; declare const Confirmation: ({ className, shouldShow, viewName, onCancel, onDelete, }: ConfirmationPropsType) => React.JSX.Element; export default Confirmation; //# sourceMappingURL=Confirmation.d.ts.map