import { ArrayCollection, Model } from '../../../lib/main';
export declare class NestedModel extends Model {
    id: string;
    name: string;
}
export declare const nestedCollection: ArrayCollection<NestedModel>;
export declare class AllModel extends Model {
    any: any;
    array: boolean[];
    boolean: boolean;
    date: Date;
    model: NestedModel;
    number: number;
    object: {
        enabled: boolean;
    };
    reference: string | NestedModel;
    string: string;
    constructor(data?: Partial<AllModel>);
}
