import { Bookmark } from "./bookmark";
import { LinkElement } from "./linkElement";
export declare class Bookmarks extends LinkElement {
    'list': Array<Bookmark>;
    static discriminator: any;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
