export declare const RINGCENTRAL_APP_BASE_URL = "https://app.ringcentral.com"; export declare const RINGCENTRAL_VIDEO_BASE_URL = "https://v.ringcentral.com"; export type RingCentralPhoneNumberPayload = { /** * Phone number value used by the documented RingCentral URI. * * @example '15551234567' */ phoneNumber: string; }; export declare function ringCentralMobileUrl(path: string, params?: Record): string; export declare function ringCentralAppUrl(path: string, params?: Record): string; export declare function ringCentralDesktopPath(path: string, params?: Record): string; export declare function ringCentralVideoUrl(path: string, params?: Record): string; export declare function ringCentralPath(...segments: string[]): string;