import { ILogger, IUnmockOptions } from "./interfaces";
export declare class UnmockOptions implements IUnmockOptions {
    useInProduction: boolean;
    logger: ILogger;
    signature?: string;
    whitelist?: string[] | string;
    private regexWhitelist?;
    constructor(options?: IUnmockOptions);
    reset(options?: IUnmockOptions): UnmockOptions;
    isWhitelisted(host: string): boolean;
    private whitelistToRegex;
}
//# sourceMappingURL=options.d.ts.map