import React from 'react'; type ITrigger = 'hover' | 'click'; export interface InfoProps { trigger?: ITrigger[]; size?: number; placement?: 'left' | 'right' | 'bottom' | 'top' | 'rightTop' | 'topLeft' | 'bottomLeft' | 'leftTop'; width?: number; iconColor?: string; content?: React.ReactNode; cy?: { content?: string; info?: string; }; } declare const Info: React.FC; export default Info;