/** @typedef {typeof __propDef.props} TooltipProps */ /** @typedef {typeof __propDef.events} TooltipEvents */ /** @typedef {typeof __propDef.slots} TooltipSlots */ export default class Tooltip extends SvelteComponent<{ content?: string | undefined; align?: string | undefined; position?: string | undefined; maxWidth?: number | undefined; style?: null | undefined; theme?: string | undefined; animation?: string | undefined; arrow?: boolean | undefined; autoPosition?: boolean | undefined; testId?: string | undefined; }, { [evt: string]: CustomEvent; }, { default: {}; }> { } export type TooltipProps = typeof __propDef.props; export type TooltipEvents = typeof __propDef.events; export type TooltipSlots = typeof __propDef.slots; import { SvelteComponent } from "svelte"; declare const __propDef: { props: { content?: string | undefined; align?: string | undefined; position?: string | undefined; maxWidth?: number | undefined; style?: null | undefined; theme?: string | undefined; animation?: string | undefined; arrow?: boolean | undefined; autoPosition?: boolean | undefined; testId?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};