import type { CSSProperties } from 'react'; import React from 'react'; export interface Props { caption?: string; className?: string; clone?: boolean; dragging?: boolean; imageHeight: number; imageWidth: number; isInteractive?: boolean; onCaptionChange: (caption: string) => void; onCaptionClicked?: () => void; onCrop: () => void; onCropClicked?: () => void; onDelete: () => void; onDeleteClicked?: () => void; style?: CSSProperties; url: string; withBorderRadius: boolean; withDropOverlay?: boolean; withSizeWarning?: boolean; withSmallButtons?: boolean; } export declare const GalleryTile: React.ForwardRefExoticComponent>;