export declare const handleMusicEvent: (musicData: {
    musicLink?: string;
    musicName?: string;
    music_id?: string;
    id?: string;
    isGlobal?: boolean;
}) => void;
export declare const handleLinkEvent: (link?: string) => void;
export declare const handlePageEvent: (pageIndex?: number, callback?: () => void) => void;
export declare const handlePhoneEvent: (phoneNumber?: string) => void;
export declare const handleElementEvent: (eventData: {
    event: string;
    link?: string;
    go?: number;
    phone?: string;
    musicLink?: string;
    musicName?: string;
    music_id?: string;
    id?: string;
    isGlobal?: boolean;
}, callback?: () => void, options?: {
    pauseNonGlobalBeforeAction?: boolean;
}) => void;
