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>; export default Tools;