import path from 'path'; import pathIsInside from 'path-is-inside'; import type stylelint from 'stylelint'; import { URI } from 'vscode-uri'; import { normalizeFsPath } from '../../utils/index.js'; import type { RunnerOptions } from '../../stylelint/types.js'; import { PackageRootService } from './package-root.service.js'; export declare class StylelintOptionsService { #private; constructor(pathModule: typeof path, pathIsInsideFn: typeof pathIsInside, uriModule: typeof URI, packageRootFinder: PackageRootService, normalizeFsPathFn: typeof normalizeFsPath); build(uri: string, workspaceFolder?: string, baseOptions?: Partial, runnerOptions?: RunnerOptions): Promise>; }