export type Editors = 'vscode' | 'vscode-insiders' | 'vscodium' | 'cursor' | 'android-studio' | 'idea' | 'phpstorm' | 'webstorm' | 'sublime' | 'textmate'; export type GetEditorUriOptions = { /** Path of the file to be opened. */ path: string; /** Line to be focused. */ line?: number; /** Column to be focused. */ column?: number; /** The IDE the file should be opened in. */ editor?: Editors; }; /** Constructs a URI path for the configured IDE. */ export declare function getEditorUri({ path, line, column, editor, }: GetEditorUriOptions): string;