import { DigiDoodleOptions } from '../themes/digidoodle/types.js'; export interface AvatarDigiDoodleProps extends Partial> { /** Unique identifier for deterministic generation */ id: string; /** Canvas size in pixels (default: 256) */ size?: number; /** Optional className for the canvas element */ className?: string; /** Optional inline styles for the canvas element */ style?: React.CSSProperties; /** Callback when avatar is generated */ onGenerate?: (canvas: HTMLCanvasElement) => void; } /** * DigiDoodle Avatar React Component * * @example * ```tsx * * ``` */ export declare function AvatarDigiDoodle({ id, size, className, style, onGenerate, ...options }: AvatarDigiDoodleProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=AvatarDigiDoodle.d.ts.map