export declare class Element {
    display: string;
    size: number;
    webApiProperty: string;
    isRequired: boolean;
    constructor(display: string, size: number, webapiproperty: string, isRequired: boolean);
}
