import type { TSLanguageService, TypeScript } from '../contracts/TypeScript';
import { FilesystemService } from '../services/FilesystemService';
import { TypescriptContextService } from '../services/TypescriptContextService';
export declare class RefactorService implements Pick<TSLanguageService, 'organizeImports'> {
    private readonly ts;
    private readonly fs;
    constructor(ts: TypescriptContextService, fs: FilesystemService);
    organizeImports(args: TypeScript.OrganizeImportsArgs, formatOptions: TypeScript.FormatCodeSettings, preferences: TypeScript.UserPreferences | undefined): readonly TypeScript.FileTextChanges[];
}
//# sourceMappingURL=RefactorService.d.ts.map