/// export interface ImageContextMenuProps { position: { top?: string; right?: string; bottom?: string; left?: string; }; hasImage: boolean; loading?: boolean; onUpload?: (file: File) => void; onDelete?: () => void; readonlyAttribute?: string; readonly?: boolean; } export declare const ImageContextMenu: ({ position, hasImage, loading, onUpload, onDelete, readonlyAttribute, readonly }: ImageContextMenuProps) => JSX.Element;