import React from "react"; interface ThumbnailActionsProps { onRemoveItem?: () => void; onEditItem?: () => void; onReplaceItem?: () => void; disabled?: boolean; className?: string; } /** * The file's actions laid over its thumbnail and revealed on hover, mirroring the File Manager's * grid so a file offers the same affordances wherever it is shown. Requires `group` and * `relative` on the element wrapping the thumbnail. */ declare const ThumbnailActions: ({ className, disabled, onEditItem, onRemoveItem, onReplaceItem }: ThumbnailActionsProps) => React.JSX.Element; export { ThumbnailActions, type ThumbnailActionsProps };