import os from 'os'; import * as LSP from 'vscode-languageserver-protocol'; import type { TextDocument } from 'vscode-languageserver-textdocument'; /** * Service that creates code actions that disable a rule for an entire file. */ export declare class DisableRuleFileCodeActionService { #private; constructor(osModule?: Pick); create(document: TextDocument, { code }: LSP.Diagnostic): LSP.CodeAction; }