import { ComponentOptionsMixin } from 'vue'; import { ComponentProvideOptions } from 'vue'; import { DefineComponent } from 'vue'; import { ExtractPropTypes } from 'vue'; import { PropType } from 'vue'; import { PublicProps } from 'vue'; declare type __VLS_NonUndefinedable = T extends undefined ? never : T; declare type __VLS_Prettify = { [K in keyof T]: T[K]; } & {}; declare type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: PropType<__VLS_NonUndefinedable>; } : { type: PropType; required: true; }; }; declare type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; declare type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; }; export declare 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 const _default: __VLS_WithTemplateSlots, { align: string; disabled: boolean; contentClass: string; buttonText: () => any; }>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly, { align: string; disabled: boolean; contentClass: string; buttonText: () => any; }>>> & Readonly<{}>, { disabled: boolean; align: "left" | "right"; contentClass: string; buttonText: string; }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, { default?(_: {}): any; }>; export default _default; export { }