export declare class AggregatedIdentifier {
    private readonly _testFilePath;
    private readonly _identifier;
    constructor(_testFilePath: string | undefined, _identifier?: string);
    get testFilePath(): string | undefined;
    get identifier(): string;
    static global(identifier: string): AggregatedIdentifier;
    static parse(id: string): AggregatedIdentifier;
    static normalize(id: string | AggregatedIdentifier): AggregatedIdentifier;
    toString(): string;
    equals(other: AggregatedIdentifier): boolean;
    nest(subIdentifier: string): AggregatedIdentifier;
}
