export declare class SchemaValueObject {
    uniqueName: string;
    type: string;
    caption: string;
    folder: string;
    aggregations: string[];
    fieldStats: FieldStats;
    constructor(uniqueName: string, type: string, caption: string, folder?: string, aggregations?: string[]);
    static fromObject(obj: any): SchemaValueObject;
    toObject(): any;
}
export interface FieldStats {
    distinctMembersNumber?: number;
}
