/** * * * DTO providing information about the current indexing status of the database views. */ export declare class IndexingInfo { /** * * A map of indexing statuses, keyed by view name, where the value represents the indexing progress * percentage. */ statuses: { [key: string]: number; } | undefined; constructor(partial: Partial); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): IndexingInfo; }