import { IRepository } from "../../api"; export declare class ReadableRepository { static readonly FIELD_IDENTIFIER = "Identifier"; static readonly FIELDS_DEFAULT: string[]; static readonly FIELDS_ALL: string[]; static listFromApi(apiObjects: IRepository[]): ReadableRepository[]; readonly Identifier: number; readonly Name: string; readonly Description: string; readonly Path: string; readonly CharacterSet: string; readonly ReportAccess: string; readonly CreatedBy: string; readonly DateCreated: string; readonly ModifiedBy: string; readonly ModifiedDate: string; constructor(apiObject: IRepository); }