import { CustomElement } from '../../Abstracts/CustomElement'; import type { IEmojiElementProps } from './IEmojiElementProps'; declare const EmojiElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Sizeable").ISizeableProps) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * The `EmojiElement` element. * * @example * ```html * * * * * * ``` * * @public */ export declare class EmojiElement extends EmojiElement_base implements IEmojiElementProps { private _unicode; /** * @public */ constructor(); /** * Returns the `is` property. * The `is` property represents natural name of this element. * * @public * @static * @readonly */ static get is(): string; /** * Gets or sets the `unicode` property. * * @public */ get unicode(): string; set unicode(value: string); /** * Gets or sets the emoji as a rendered string. * Setting this will update the unicode property (normalized, hyphen-separated, uppercase hex). * * @public */ get emoji(): string; set emoji(value: string); /** * Converts the current unicode value to its emoji string. * * @public */ toEmoji(): string; /** * Converts the current emoji string to a normalized unicode representation. * Returns an uppercase, hyphen-separated hex codepoint string (e.g., "1F469-200D-1F4BB"). * * @public */ toUnicode(): string; /** * Transforms the specified unicode value to emoji. * Supports multi-codepoint sequences separated by "-", spaces, or prefixed with "U+" / "0x". * * @protected */ transformUnicodeToEmoji(value?: string): string; /** * Transforms the specified emoji string to a normalized unicode representation. * Returns uppercase hex codepoints joined by "-" (keeps all variation selectors and ZWJ sequences). * * @protected */ transformEmojiToUnicode(value?: string): string; /** * Normalizes input for the unicode property into a canonical, uppercase, hyphen-separated hex string. * * @private */ private normalizeUnicodeInput; } /** * @public */ export declare namespace EmojiElement { type Props = IEmojiElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-emoji': EmojiElement; } } export {}; //# sourceMappingURL=EmojiElement.d.ts.map