import { IReport } from "../../api"; export declare class ReadableReport { static readonly FIELD_REPORT_HANDLE = "ReportHandle"; static readonly FIELDS_DEFAULT: string[]; static readonly FIELDS_ALL: string[]; static listFromApi(apiObjects: IReport[]): ReadableReport[]; readonly ReportHandle: string; readonly ReportName: string; readonly Lines: number; readonly Pages: number; readonly TotalPages: number; readonly Type: string; readonly OriginalType: string; readonly ArchivalDate: string; readonly Description: string; readonly UserComments: string; readonly Destination: string; readonly JobName: string; readonly Origin: string; readonly Generation: number; readonly SequenceNumber: number; readonly SysoutClass: string; readonly Status: string; readonly JobID: string; readonly Forms: string; readonly XCode: string; readonly UserID: string; readonly ReadDate: string; readonly PrintDate: string; readonly OnDisk: boolean; readonly OnTape: boolean; readonly OnOptical: boolean; readonly IndexOnDisk: boolean; readonly Location: string; readonly TapeSequence: number; readonly TapePosition: number; readonly TapeCount: number; readonly ExtendedRetentionOptionID: string; readonly RemainingDays: number; readonly RemainingGenerations: number; readonly RemainingCopy: number; readonly RemainingDiskDays: number; readonly RemainingDiskGeneration: number; readonly RemainingDiskCopy: number; readonly RemainingDisk2days: number; constructor(apiObject: IReport); }