import { Placement } from '../../lib/types.ts'; export interface Props { /** * Tooltip placement related to the anchor */ placement?: Placement; /** * Set the minimum width of the dropdown element */ minWidth?: number | string; /** * Set he max height of the dropdown element before it starts scrolling */ maxHeight?: number | string; /** * Disable mobile drawer behavior, always use the floating dropdown. */ noMobileDrawer?: boolean; /** * By default, elements with transition already use a default fade transition. This can be replaced by a custom vue transition class name. * * Setting the value to `none` will not apply any transition. This is useful when using viewTransitions to prevent conflicts between default animation and the view transition */ transitionName?: string | 'none'; } declare function open(): void; declare function close(): void; declare function toggle(): void; declare var __VLS_1: { open: typeof open; isOpen: boolean; close: typeof close; toggle: typeof toggle; }, __VLS_12: { open: typeof open; close: typeof close; toggle: typeof toggle; isOpen: boolean; }, __VLS_26: { open: typeof open; close: typeof close; toggle: typeof toggle; isOpen: boolean; }; type __VLS_Slots = {} & { trigger?: (props: typeof __VLS_1) => any; } & { default?: (props: typeof __VLS_12) => any; } & { default?: (props: typeof __VLS_26) => any; }; declare const __VLS_base: import('vue').DefineComponent; }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { close: () => any; }, string, import('vue').PublicProps, Readonly & Readonly<{ onClose?: (() => any) | undefined; }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };