import type { IEditorOverrideServices } from "@codingame/monaco-vscode-api/vscode/vs/editor/standalone/browser/standaloneServices"; interface WorkingCopyServiceOptions { storage?: "memory" | "userData" | null; } export default function getServiceOverride({ storage }?: WorkingCopyServiceOptions): IEditorOverrideServices; export {};