import type { Marker } from '@edgepdf/types'; /** * Options for creating a delete confirmation popup */ export interface DeletePopupOptions { /** Current marker data */ marker: Marker; /** Callback when delete is confirmed */ onConfirm: () => void; /** Callback when cancel is clicked */ onCancel: () => void; } /** * Creates and shows a delete confirmation popup for a marker * * @param options - Delete popup options * @returns HTML element containing the popup */ export declare function createDeletePopup(options: DeletePopupOptions): HTMLElement; //# sourceMappingURL=marker-delete-popup.d.ts.map