type TooltipProps = { classList?: any; class?: string; align?: 'top' | 'bottom' | 'left' | 'right' | 'topLeft' | 'topRight' | 'bottomLeft' | 'bottomRight' | 'leftTop' | 'leftBottom' | 'rightTop' | 'rightBottom'; theme?: string; style?: any; children?: any; content?: any; disabled?: boolean; }; export declare function Tooltip(props: TooltipProps): import("solid-js").JSX.Element; export {};