export declare class Link {
    /**
    * Id of the content item
    */
    itemId: string;
    /**
     * Codename of the content item
     */
    codename: string;
    /**
     * Type codename of the content item
     */
    type: string;
    /**
     * Url slug defined for the content item
     */
    urlSlug: string;
    constructor(data: {
        itemId: string;
        codename: string;
        type: string;
        urlSlug: string;
    });
}
