import { ServerConfig, Environment } from "./types";
export declare const SERVER_CONFIGS: Record<Environment, ServerConfig>;
export interface HttpClientConfig {
    baseURL: string;
    clientId: string;
    clientSecret: string;
    timeout?: number;
}
