export interface Endpoint { id: string; dev: string; int: string; prod: string; } export interface Endpoints { notifications?: string; accounts?: string; console?: string; } export declare const NOTIFICATIONS: Endpoint; export declare const ACCOUNTS: Endpoint; export declare const CONSOLE: Endpoint; export declare const STATUS: Endpoint; export type Stage = 'dev' | 'int' | 'prod'; export declare function getEndpoint(stage: Stage, endpoint: Endpoint): string; export declare function getEndpointByOptions(options: { stage?: Stage; endpoints?: Endpoints; endpoint: Endpoint; }): string;