import React, { HTMLAttributes } from 'react';
import { ImagePreviewActionProps } from './interface';
interface ImagePreviewToolsProps extends HTMLAttributes {
prefixCls: string;
previewPrefixCls: string;
actions: ImagePreviewActionProps[];
actionsLayout: string[];
defaultActions: ImagePreviewActionProps[];
}
declare const ImagePreviewTools: React.ForwardRefExoticComponent>;
export default ImagePreviewTools;