import type { ImageEditorProps } from '../types/index'; /** * Image editor with crop, rotate, flip, brightness, and contrast controls. * * @example * ```tsx * setPhoto(edited)} * onCancel={() => setEditing(false)} * tools={['crop', 'rotate', 'brightness', 'contrast', 'flip']} * /> * ``` */ export default function ImageEditor({ src, onSave, onCancel, tools, format, quality, }: ImageEditorProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=ImageEditor.d.ts.map