interface Props { children?: import('svelte').Snippet; class?: string; placement?: 'top' | 'bottom' | 'left' | 'right' | 'top-start' | 'top-end' | 'bottom-start' | 'bottom-end' | 'left-start' | 'left-end' | 'right-start' | 'right-end'; offset?: number; interactive?: boolean; } declare const TooltipContent: import("svelte").Component; type TooltipContent = ReturnType; export default TooltipContent;