export declare class ClassPath {
    private readonly value;
    constructor(classPath: string);
    isEmpty(): boolean;
    concat(other: ClassPath): ClassPath;
    toString(): string;
}
