UNPKG

geoiq-frontend-ui-kit

Version:

This project is a UI kit for GeoIQ's frontend. It's built with React, TypeScript, and Vite.

11 lines (10 loc) 449 B
import { default as React } from 'react'; import { ImageEditorEngine, ImageEditorUiState } from './image-editor.types'; export interface ImageEditorModalProps { engine: ImageEditorEngine; ui: ImageEditorUiState | null; isOpen: boolean; saveLabel: string; } export declare function ImageEditorModal({ engine, ui, isOpen, saveLabel, }: ImageEditorModalProps): React.JSX.Element | null; //# sourceMappingURL=image-editor-modal.d.ts.map