import { SanityDocument } from '@sanity/types'; import React from 'react'; import { WithReferringDocumentsProps } from './enhanceWithReferringDocuments'; export interface ConfirmDeleteProps extends WithReferringDocumentsProps { onCancel: () => void; onConfirm: () => void; published?: SanityDocument | null; draft?: SanityDocument | null; } export declare const ConfirmDelete: React.ComponentType>; //# sourceMappingURL=ConfirmDelete.d.ts.map