import { Link } from "./Link";
export declare class LandingPage {
    title?: string;
    description?: string;
    links: Link[];
    static fromJson(jsonObj: any): LandingPage;
}