import type { FilterPattern } from "@rollup/pluginutils";
import type { Plugin } from "rollup";
export interface SourcemapsPluginOptions {
    exclude?: FilterPattern;
    include?: FilterPattern;
}
export declare const sourcemapsPlugin: ({ exclude, include }?: SourcemapsPluginOptions) => Plugin;
