export declare class ViewDescriptor {
    readonly id: string;
    readonly name: string;
    readonly title: string;
    constructor(id: string, name: string, title: string);
}
