export type WebexCallbackPayload = { /** * User friendly source app name. */ xSource?: string; /** * URL to open in the source app if the action is successful. */ xSuccess?: string; /** * URL to open if the action is canceled. */ xCancel?: string; }; export declare function webexTeamsUrl(action: 'im' | 'meet', params: Record): string; export declare function webexLoginUrl(scheme: 'webextel' | 'webexauth', params: Record): string; export declare function webexCallbackParams(payload: WebexCallbackPayload): { 'x-source': string | undefined; 'x-success': string | undefined; 'x-cancel': string | undefined; };