import type { EmojiName } from './get-available-emoji'; export type Format = 'hevc' | 'webm'; export type Scale = '0.5' | '1' | '2'; export type CalculateEmojiSrc = (options: { emoji: EmojiName; scale: Scale; format: Format; }) => string; export declare const defaultCalculateEmojiSrc: CalculateEmojiSrc;