export declare const uuid: () => string; export declare function getMeetingTypeTextKey(meetingType?: string): string; export declare function isEmailValid(email: string): boolean; export declare function camelCaseToDash(str: string): string; export declare function base64Decode(payload: string): string; /** * Detects if the user is on a mobile device (phone). * Based on user agent detection, not window size, so it won't * misclassify a desktop with small window as mobile. * Handles iPadOS quirk where Safari identifies as Mac. */ export declare function detectMobileDevice(): boolean;