/**
 * Finds the Sqitch project path.
 * @param cwd - Current working directory.
 * @returns A promise that resolves to the directory path containing `sqitch.conf`.
 */
export declare const sqitchPath: (cwd?: string) => string;
/**
 * Finds the LaunchQL project path.
 * @param cwd - Current working directory.
 * @returns A promise that resolves to the directory path containing `launchql.json`.
 */
export declare const launchqlPath: (cwd?: string) => string;
export declare const getWorkspacePath: (cwd: string) => string;
export declare const getModulePath: (cwd: string) => string;
