import type { ReactNode } from 'react'; export type Position = 'bottom' | 'top' | 'left' | 'right'; export interface TooltipProps { children: NonNullable; content: NonNullable; defaultVisible?: boolean; fullWidth?: boolean; position: Position; } export declare function Tooltip({ children, position, content, defaultVisible, fullWidth }: TooltipProps): ReactNode; //# sourceMappingURL=index.d.ts.map