import { GameAvatarMetadata } from './types'; /** * Renders the deterministic SVG markup for a game avatar. Same seed + style + * backgroundColor always produces the same bytes — this is the single place * that generates it, shared by `` (data URI for display) and * the rasterizer (PNG for upload). */ export declare function renderGameAvatarSvg(metadata: Pick): string; export declare function gameAvatarDataUri(metadata: Pick): string;