declare const Config: { Endpoint: { /** Production endpoint */ Production: string; /** Staging endpoint */ Staging: string; }; Website: { Production: string; Staging: string; }; Verification: { Url: string; code: (code: string) => string; }; }; export { Config };