import { Workspace } from '../workspace'; export declare function projectSourceDirectories(workspace: Workspace): any[]; export declare function projectSourceDirectoryGlobPattern(workspace: Workspace): any; export declare function graphQLSchemaPath(workspace: Workspace, idl?: boolean): string; export declare function makePrivateDirectory({paths}: Workspace): Promise; export declare function makeGitIgnoredDirectory(path: string): Promise; export interface OpenFileOptions { line: number; column: number; } export declare function openFile(file: string, {line, column}?: Partial): Promise;