type TConfig = { /** * ZeroXKey API public key */ apiPublicKey: string; /** * ZeroXKey API private key */ apiPrivateKey: string; /** * ZeroXKey API base URL */ baseUrl: string; }; type TBrowserConfig = { /** * ZeroXKey API base URL */ baseUrl: string; }; /** * @deprecated use {@link ZeroXKeyClient} instead, which doesn't rely on global initialization logic. */ export declare function browserInit(value: TBrowserConfig): void; /** * @deprecated use {@link ZeroXKeyClient} instead, which doesn't rely on global initialization logic. */ export declare function init(value: TConfig): void; export declare function getConfig(): TConfig; export declare function getBrowserConfig(): TBrowserConfig; export {}; //# sourceMappingURL=config.d.ts.map