import type { SourceMapProps } from './sourceMap/SourceMap'; interface InputOptions { content?: { [file: string]: string; }; sourcemaps?: { [file: string]: SourceMapProps; }; sourceRootResolution?: string; sourceMappingURLResolution?: string; verbose?: boolean; } interface OutputOptions { sourceMappingURLTemplate?: 'inline' | 'none' | '[absolute-path]' | '[relative-path]' | '[resource-path]' | string; sourceMappingURLBase?: string; sourcePathTemplate?: '[absolute-path]' | '[relative-path]' | '[resource-path]' | string; sourcePathBase?: string; sourceRoot?: string; excludeContent?: boolean; flatten?: 'full' | 'existing' | false; } interface DeprecatedOtions { inline?: boolean; absolutePath?: boolean; base?: string; } export interface Options extends InputOptions, OutputOptions, DeprecatedOtions { } export {};