import { SvelteComponent } from "svelte"; | |
declare const __propDef: { | |
props: import("../_types.js").Props; | |
events: { | |
[evt: string]: CustomEvent<any>; | |
}; | |
slots: { | |
default: { | |
ids: { | |
content: string; | |
trigger: string; | |
}; | |
}; | |
}; | |
}; | |
export type TooltipProps = typeof __propDef.props; | |
export type TooltipEvents = typeof __propDef.events; | |
export type TooltipSlots = typeof __propDef.slots; | |
export default class Tooltip extends SvelteComponent<TooltipProps, TooltipEvents, TooltipSlots> { | |
} | |
export {}; | |