import * as React from 'react';
interface IProps {
    type: string;
    info: {
        size: number;
        color: string;
    };
    setInfo: any;
    onChange: (type: string, options?: {
        color?: string;
        size?: number;
    }) => void;
    onClose: () => void;
    onCancel: () => void;
    onDownload: () => void;
    onCopy: () => void;
}
declare const Tools: React.ForwardRefExoticComponent<IProps & React.RefAttributes<HTMLDivElement>>;
export default Tools;
