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