import type { IconColor, IconName } from '../Icon'; import type { SharedButtonAppearance, SharedButtonVariant, SharedButtonSize } from '../shared/button/types'; type MenuButtonProps = { /** * The label of the button. This property is required for accessibility concerns */ label: string; /** * The aria-label of the button. This can optionally be used if the the aria label is different from the visible label */ hiddenLabel?: string; /** * The appearance of the button. This property is used to set the appearance of the button. */ appearance?: SharedButtonAppearance; /** * Links to SbButton variant */ variant?: SharedButtonVariant; /** * If true, the button will render only the icon */ hasIconOnly?: boolean; /** * Links to SbButton icon property */ icon?: IconName; /** * Links to SbButton size property */ size?: SharedButtonSize; /** * If true, the button will have no border */ isBorderless?: boolean; /** * Links to SbButton iconRight property */ iconRight?: string; /** * If true, the button will be disabled */ isDisabled?: boolean; /** * Links to SbButton iconColor property */ iconColor?: IconColor; /** * If true, the tooltip will be rendered within the target element */ tooltipWithinTarget?: boolean; /** * Forwards to SbButton/SbIconButton isLoading property */ isLoading?: boolean; }; declare var __VLS_11: {}; type __VLS_Slots = {} & { default?: (props: typeof __VLS_11) => any; }; declare const __VLS_base: import("vue").DefineComponent any; keydown: (event: KeyboardEvent) => any; }, string, import("vue").PublicProps, Readonly & Readonly<{ onClick?: ((event: MouseEvent) => any) | undefined; onKeydown?: ((event: KeyboardEvent) => any) | undefined; }>, { size: SharedButtonSize; variant: SharedButtonVariant; icon: IconName; tooltipWithinTarget: boolean; isLoading: boolean; iconRight: string; iconColor: IconColor; }, {}, {}, {}, 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; }; };