/**
 * Get the workspace root path
 *
 * @param dir - A directory to start the search from
 * @returns The workspace root path
 */
export declare const getWorkspaceRoot: (dir?: string) => string;
/**
 * Get the project root path
 *
 * @param dir - A directory to start the search from
 * @returns The project root path
 */
export declare const getProjectRoot: (dir?: string) => string;
