export interface OnChainImageEditorProps { imageList?: string[]; initialData?: Record; renderImages?: (images: string[]) => React.ReactNode; } export interface OnChainImageEditorRef { getImageBase64: () => string; getJSON: () => Record; } declare const OnChainImageEditor: import('react').ForwardRefExoticComponent>; export default OnChainImageEditor;