import React from 'react';
import { type SkFont } from '@shopify/react-native-skia';
export interface EmojiProps {
    x?: number;
    y?: number;
    autoHide?: boolean;
    emoji?: string;
    font: SkFont;
}
export declare const Emoji: React.MemoExoticComponent<({ x, y, autoHide, emoji, font }: EmojiProps) => React.JSX.Element | null>;
