import { Bookmarks } from "./bookmarks";
import { Color } from "./color";
import { LinkElement } from "./linkElement";
export declare class Bookmark extends LinkElement {
    'title': string;
    'italic': boolean;
    'bold': boolean;
    'color': Color;
    'action': string;
    'level': number;
    'destination': string;
    'pageDisplay': string;
    'pageDisplayBottom': number;
    'pageDisplayLeft': number;
    'pageDisplayRight': number;
    'pageDisplayTop': number;
    'pageDisplayZoom': number;
    'pageNumber': number;
    'remoteFile': string;
    'bookmarks': Bookmarks;
    static discriminator: any;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
