import { EmojiManifest } from '../utils';
/**
 * Custom hook for getting emoji style and category information.
 * @param {string} id - The emoji id.
 * @returns {Object} An object containing the emoji manifest and category folder.
 * @returns {EmojiManifest | null} .emoji - The emoji manifest data or null if not found.
 * @returns {string} .categoryFolder - The category folder for the emoji.
 */
export declare const useEmojiStyle: (id: string) => {
    emoji: EmojiManifest | null;
    categoryFolder: string;
};
//# sourceMappingURL=useEmojiStyle.d.ts.map