import React from 'react'; export interface TooltipProps { content: React.ReactNode; children: React.ReactNode; position?: 'top' | 'bottom' | 'left' | 'right' | 'topLeft' | 'topRight' | 'bottomLeft' | 'bottomRight'; } export declare const Tooltip: React.FC; //# sourceMappingURL=Tooltip.d.ts.map