import { BaseModel } from './base.model'; export declare class ReportSchedule extends BaseModel { report?: number; company?: number; week_rule?: string; month_rule?: string; hour?: number; next_ts?: string; recipients?: string[] | any[]; curdate?: boolean; constructor(report?: number, company?: number, week_rule?: string, month_rule?: string, hour?: number, next_ts?: string, recipients?: string[] | any[], curdate?: boolean); static fromJson(json: any): ReportSchedule; }