import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; visible?: boolean | undefined; position?: string | undefined; background?: string | undefined; color?: string | undefined; width?: string | undefined; whitespace?: string | undefined; rounded?: string | undefined; duration?: number | undefined; popup?: string | undefined; message?: string | undefined; arrow?: string | undefined; content?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { message: {}; content: {}; }; }; export declare type TooltipProps = typeof __propDef.props; export declare type TooltipEvents = typeof __propDef.events; export declare type TooltipSlots = typeof __propDef.slots; export default class Tooltip extends SvelteComponentTyped { } export {};