export interface Connection { billing: string; catalog: string; gateway: string; marketplace: string; provisioning: string; connector: string; graphql: string; oauth: string; } export declare type Env = 'local' | 'stage' | 'prod'; declare type Connections = { [K in Env]: Connection; }; export declare const connections: Connections; export {};