export interface EditorController {
    name: string;
    detect(): Promise<boolean>;
    forceRefresh(filePath: string): Promise<boolean>;
    openFile(filePath: string): Promise<boolean>;
}
export declare class EditorManager {
    private controllers;
    forceRefreshFile(filePath: string): Promise<boolean>;
    openFileInEditor(filePath: string): Promise<boolean>;
}
