//#region src/core/emoji.d.ts
/** Apis for loading emoji svg */
declare const EMOJI_APIS: {
  openmoji: (code: string) => string;
  blobmoji: (code: string) => string;
  noto: (code: string) => string;
  twemoji: (code: string) => string;
  fluent: (code: string) => string;
  fluentFlat: (code: string) => string;
};
/** Represents type of emoji */
type EmojiType = keyof typeof EMOJI_APIS;
//#endregion
export { EMOJI_APIS, EmojiType };
//# sourceMappingURL=emoji.d.cts.map