import { ValidConfigOptions } from '../options/options';
import { LogLevel } from './logger';
export declare function getBackportDirPath(): string;
export declare function getLogfilePath({ logFilePath, logLevel, }: {
    logFilePath?: string;
    logLevel: LogLevel;
}): string;
export declare function getGlobalConfigPath(globalConfigFile: string | undefined): string;
export declare function getRepoPath({ repoOwner, repoName, dir }: ValidConfigOptions): string;
