export interface GGLocatorDebugService { key: string; className: string | undefined; stack: string[]; composeLine: string | undefined; } export interface GGLocatorRawServiceData { key: string; value: any; rawStack: string[]; } export declare class GGLocatorScopeDebugList { readonly scopes: GGLocatorScopeDebug[]; add(tree: GGLocatorScopeDebug): void; toString(color?: boolean): string; toJSON(): object; } export declare class GGLocatorScopeDebug { readonly scopeName: string; readonly creationStack: string[]; readonly services: GGLocatorDebugService[]; constructor(scopeName: string, rawCreationStack: string[]); private processCreationStack; add(key: string, value: any, rawStack: string[] | undefined): void; private processService; private normalizeStackLine; private findComposeLine; private normalizePathToFileUrl; toString(color?: boolean): string; toJSON(): object; } //# sourceMappingURL=GGLocatorScopeDebug.d.ts.map