import type { LayoutAndStyle, RemotionOffthreadVideoProps } from 'remotion'; import type { CalculateEmojiSrc, Scale } from './calculate-emoji-src'; import type { EmojiName } from './get-available-emoji'; export type AnimatedEmojiProps = Omit & { readonly emoji: EmojiName; readonly scale?: Scale; readonly calculateSrc?: CalculateEmojiSrc; } & LayoutAndStyle; export declare const AnimatedEmoji: ({ emoji, scale, calculateSrc, playbackRate, ...props }: AnimatedEmojiProps) => import("react/jsx-runtime").JSX.Element;