/** * Emoji handling module * Resolves emoji aliases and handles direct emoji input */ /** * Resolve an emoji input to an actual emoji character * Supports: * - Direct emoji: 🔥 * - Alias with colons: :fire: * - Alias without colons: fire */ export declare function resolveEmoji(input: string): string; /** * Parse comma-separated emoji input into array of resolved emojis */ export declare function parseEmojis(input: string): string[]; /** * Get a default background emoji (empty space with proper width) */ export declare function getBackgroundEmoji(): string; /** * Validate that the resolved emoji is valid */ export declare function validateEmoji(emoji: string): boolean; //# sourceMappingURL=emoji.d.ts.map