import type { Config as BaseConfig } from "./types"; import type { NestedOmit } from "../common/types"; type Config = NestedOmit; export declare function configure(overrides?: Partial): Omit & { globals?: any; }; export {};