/**
 * One callback registered in the shared avatar animation scheduler.
 *
 * @private utility of the avatar rendering system
 */
type AvatarAnimationListener = (now: number) => void;
/**
 * Registers one avatar animation callback in the shared animation loop.
 *
 * @param avatarAnimationListener Frame callback invoked on every animation frame.
 * @returns Cleanup function that unregisters the callback.
 *
 * @private utility of the avatar rendering system
 */
export declare function retainAvatarAnimationListener(avatarAnimationListener: AvatarAnimationListener): () => void;
export {};
