export declare class LinkModel {
    href: string | null;
    sfref: string | null;
    id: string | null;
    text: string | null;
    target: string | null;
    queryParams: string | null;
    anchor: string | null;
    tooltip: string | null;
    type: string | null;
    classList: string[] | null;
    attributes: {
        [key: string]: string;
    } | null;
    /**
     * @deprecated Use href instead
     */
    Href: string | null;
    /**
     * @deprecated Use sfref instead
     */
    Sfref: string | null;
    /**
     * @deprecated Use id instead
     */
    Id: string | null;
    /**
     * @deprecated Use text instead
     */
    Text: string | null;
    /**
     * @deprecated Use target instead
     */
    Target: string | null;
    /**
     * @deprecated Use queryParams instead
     */
    QueryParams: string | null;
    /**
     * @deprecated Use anchor instead
     */
    Anchor: string | null;
    /**
     * @deprecated Use tooltip instead
     */
    Tooltip: string | null;
    /**
     * @deprecated Use type instead
     */
    Type: string | null;
    /**
     * @deprecated Use classList instead
     */
    ClassList: string[] | null;
    /**
     * @deprecated Use attributes instead
     */
    Attributes: {
        [key: string]: string;
    } | null;
}
