import React from "react"; import { AvatarMakerProps } from "../types"; import { useAvatarExport } from "../hooks/useAvatarExport"; export interface AvatarMakerRef { exportAsDataURL: (exportConfig?: any) => string | null; exportAsBlob: (exportConfig?: any) => Promise; download: (filename: string, exportConfig?: any) => Promise; upload: (uploadConfig?: any) => Promise; } /** * AvatarMaker component - Main component that combines rendering and export functionality */ export declare const AvatarMaker: React.ForwardRefExoticComponent>; export { useAvatarExport }; //# sourceMappingURL=AvatarMaker.d.ts.map