export interface ActionsDropdownProps { /** * Used to position the dropdown relative to target * Options: left, right */ align?: 'left' | 'right'; /** * Indicates whether the trigger button is disabled or not */ disabled?: boolean; /** * Class to be applied to the dropdown content */ contentClass?: string; /** * Text to be displayed on the trigger button */ buttonText?: string; } declare var __VLS_23: {}; type __VLS_Slots = {} & { default?: (props: typeof __VLS_23) => any; }; declare const __VLS_base: import("vue").DefineComponent & Readonly<{}>, { disabled: boolean; align: "left" | "right"; contentClass: string; buttonText: string; }, {}, {}, {}, 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; }; };