/** * Get file name of a database dump for an environment * */ export declare const getSqlDumpFilename: (environmentName: string) => string; /** * Get path where a database dump for an environment is stored * */ export declare const getSqlDumpPath: (environmentName: string) => string; /** * Get file path for database import when using a raw SQL import * */ export declare const getFilePathForRawSqlImport: (sourceSystemName: string, targetSystemName: string) => string;