type ApiEndPoints = { swapQuote: string; swapInstruction: string; crossChainQuote: string; transfer: string; claim: string; redeem: string; }; export declare enum Environment { local = "local", production = "production", development = "development" } export declare const development: ApiEndPoints; export declare const production: ApiEndPoints; export declare const getEndPointsForEnvironment: (environment: Environment) => ApiEndPoints; export {};