export declare function getProjectStructure(root?: string): {
    rootDir: string;
    buildDir: string;
    outputDir: string;
    plagiarismConfig: string;
    tactConfig: string;
    srcDir: {
        root: string;
        publicContractsDir: string;
        publicTestsDir: string;
        testsDir: string;
    };
    packDir: {
        root: string;
        contractsDir: string;
        publicTestsDir: string;
        testsDir: string;
        plagiarismConfig: string;
        tactConfig: string;
    };
};
