import type { ImageEditorUtil } from '../../image-editor/types'; export declare const useImageEditor: (onChange: (newSrc: string | null) => void) => { openImageEditor: (src: string | null, util?: ImageEditorUtil) => void; isImageEditorOpen: boolean; activeUtil: ImageEditorUtil; };