export interface Emoji {
    id: string;
    name: string;
    shortName: string;
    x: number;
    y: number;
}
export interface EmojiCategory {
    name: string;
    emojis: string[];
}
export declare const emojis: {
    [id: string]: Emoji;
};
export declare const categories: EmojiCategory[];
export declare type __ΩEmoji = any[];
export declare type __ΩEmojiCategory = any[];
