export interface IConfigs { BASE_URL: string; CLIENT_ID: string; CLIENT_SECRET: string; STRIPE_PUBLISHABLE_KEY: string; X_SOURCE_ORIGIN: string; FEES_STYLE: string; [key: string]: string | number; } export declare const CONFIGS: IConfigs; export declare const setConfigs: (configs: IConfigs) => void;