import { type DocDestination } from "./DocAction"; import { type DocDestinationProperties } from "./DocAction"; import { PdfStringMap } from "./PdfStringMap"; /** * The dictionary of document destinations, * provides an access to all destinations in the document: **/ export declare class DocumentDestinations extends PdfStringMap { get count(): number; get(key: string): DocDestination | undefined; set(key: string, item: DocDestination | DocDestinationProperties): void; add(key: string, item: DocDestination | DocDestinationProperties): void; contains(key: string): boolean; remove(key: string): boolean; clear(): void; }