import { Meta } from "../../typings/module";
export interface BundleThreshold {
    [file: string]: string;
}
export interface BundleObject {
    disable?: boolean;
    path: string;
    thresholds: BundleThreshold;
}
export declare type BundleType = string | BundleObject;
export interface Config {
    bundles: BundleType[];
}
export declare const defaultConfig: Config;
export declare const meta: Meta;
export declare const type = "source-map-explorer";
