export declare enum BackendDestinationEnum {
    REPO_ENDPOINT = 0,
    PORTAL_ENDPOINT = 1
}
export type EndpointObject = {
    REPO: string;
    PORTAL: string;
};
export declare const KNOWN_SYNAPSE_ORG_URLS: string[];
export declare const getSynapsePortalEndpoint: (hostname: string) => string;
export declare const PRODUCTION_ENDPOINT_CONFIG: EndpointObject;
export declare const getEndpoint: (endpoint: BackendDestinationEnum) => string;
export type SynapseStack = 'production' | 'staging' | 'development' | 'mock' | 'local';
export declare const MOCK_REPO_ORIGIN = "https://mock-repo.sagebase.org";
export declare const STACK_MAP: Record<SynapseStack, EndpointObject>;
//# sourceMappingURL=getEndpoint.d.ts.map