import { FlowRemoteElement } from '../lib/FlowRemoteElement'; import { ImageCropperProps as RemoteImageCropperElementProps } from '@mittwald/flow-react-components'; export type { ImageCropperProps as RemoteImageCropperElementProps } from '@mittwald/flow-react-components'; export declare class RemoteImageCropperElement extends FlowRemoteElement { static get remoteAttributes(): string[]; static get remoteProperties(): { aspectRatio: {}; className: {}; cropShape: {}; height: {}; image: {}; width: {}; }; static get remoteEvents(): { cropComplete: {}; error: {}; }; static get remoteSlots(): string[]; } declare global { interface HTMLElementTagNameMap { "flr-image-cropper": InstanceType; } }