import type { Marker } from '@edgepdf/types'; /** * Options for creating an edit popup */ export interface EditPopupOptions { /** Current marker data */ marker: Marker; /** Callback when save is clicked */ onSave: (updates: { label?: string; href?: string; }) => void; /** Callback when cancel is clicked */ onCancel: () => void; } /** * Creates and shows an edit popup for a marker * * @param options - Edit popup options * @returns HTML element containing the popup */ export declare function createEditPopup(options: EditPopupOptions): HTMLElement; //# sourceMappingURL=marker-edit-popup.d.ts.map