import os from 'os'; import * as LSP from 'vscode-languageserver-protocol'; import type { TextDocument } from 'vscode-languageserver-textdocument'; export type DisableRuleLineCodeActionLocation = 'sameLine' | 'separateLine'; /** * Service that creates code actions that disable a rule for a particular line. */ export declare class DisableRuleLineCodeActionService { #private; constructor(osModule?: Pick); create(document: TextDocument, { code, range }: LSP.Diagnostic, location: DisableRuleLineCodeActionLocation): LSP.CodeAction; }