/** * getModeFromPath returns the LSP mode for the provided file path. If the file path does not correspond to any * known mode, 'plaintext' is returned. */ export declare function getModeFromPath(path: string): string; export declare function getPathExtension(path: string): string;