import { BaseModel } from '../../core/BaseModel';
export declare class RView extends BaseModel {
    rid: number;
    gid: string;
    title: string;
    description: string;
    thumbUrl: string;
    rType: number;
    startAt: Date;
    endAt: Date;
    meta: any;
    gName: string;
    gDescription: string;
    iosVersion: string;
    androidVersion: string;
    tags: string;
    static fromDBScheme(obj: any): RView;
}
