import { PlasmaOptions } from '../themes/plasma/types.js'; export interface AvatarPlasmaProps 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; } /** * Plasma Avatar React Component * * @example * ```tsx * * ``` */ export declare function AvatarPlasma({ id, size, className, style, onGenerate, ...options }: AvatarPlasmaProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=AvatarPlasma.d.ts.map