@prefecthq/prefect-design
Version:
A collection of low-level Vue components.
31 lines (30 loc) • 1.23 kB
TypeScript
import { type TooltipRootProps, type TooltipProviderProps, type TooltipContentProps } from 'radix-vue';
type __VLS_Props = TooltipRootProps & TooltipProviderProps & Omit<TooltipContentProps, 'asChild' | 'as'> & {
text?: string;
allowCollisions?: boolean;
};
declare var __VLS_14: {}, __VLS_20: {}, __VLS_22: {};
type __VLS_Slots = {} & {
default?: (props: typeof __VLS_14) => any;
} & {
tooltip?: (props: typeof __VLS_20) => any;
} & {
content?: (props: typeof __VLS_22) => any;
};
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
text: string;
disabled: boolean;
open: boolean;
defaultOpen: boolean;
delayDuration: number;
disableHoverableContent: boolean;
disableClosingTrigger: boolean;
ignoreNonKeyboardFocus: boolean;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
export default _default;
type __VLS_WithSlots<T, S> = T & {
new (): {
$slots: S;
};
};