/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { RatingItemMouseEvent } from './interfaces/RatingEvents'; import { PropType } from 'vue'; /** * @hidden */ declare const RatingItem: import('vue').DefineComponent; tabIndex: PropType; half: PropType; title: PropType; icon: PropType; selected: PropType; hovered: PropType; onClick: PropType<(event: RatingItemMouseEvent) => void>; onKeyDown: PropType<(event: KeyboardEvent) => void>; onFocus: PropType<(event: FocusEvent) => void>; onBlur: PropType<(event: FocusEvent) => void>; onMouseEnter: PropType<(event: RatingItemMouseEvent) => void>; svgIconOutline: PropType; svgIcon: PropType; haveSelectedValue: PropType; item: PropType; itemTemplate: PropType; dir: { type: PropType; default: string; validator: (value: string | undefined) => any; }; value: { type: PropType; required: true; }; }>, { inputRef: import('vue').Ref; }, {}, { wrapperClass(): string; }, { handleClick(event: PointerEvent): void; handleMouseLeave(event: MouseEvent): void; handleMouseMove(event: MouseEvent): void; handleMouseEnter(event: MouseEvent): void; handleKeyDown(event: KeyboardEvent): void; handleFocus(event: FocusEvent): void; handleBlur(event: FocusEvent): void; }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { click: (event: RatingItemMouseEvent) => true; keydown: any; focus: any; blur: any; mouseenter: (event: RatingItemMouseEvent) => true; mouseleave: (event: RatingItemMouseEvent) => true; mousemove: (event: RatingItemMouseEvent) => true; }, string, import('vue').PublicProps, Readonly; tabIndex: PropType; half: PropType; title: PropType; icon: PropType; selected: PropType; hovered: PropType; onClick: PropType<(event: RatingItemMouseEvent) => void>; onKeyDown: PropType<(event: KeyboardEvent) => void>; onFocus: PropType<(event: FocusEvent) => void>; onBlur: PropType<(event: FocusEvent) => void>; onMouseEnter: PropType<(event: RatingItemMouseEvent) => void>; svgIconOutline: PropType; svgIcon: PropType; haveSelectedValue: PropType; item: PropType; itemTemplate: PropType; dir: { type: PropType; default: string; validator: (value: string | undefined) => any; }; value: { type: PropType; required: true; }; }>> & Readonly<{ onClick?: (event: RatingItemMouseEvent) => any; onBlur?: (...args: any[] | unknown[]) => any; onFocus?: (...args: any[] | unknown[]) => any; onKeydown?: (...args: any[] | unknown[]) => any; onMouseenter?: (event: RatingItemMouseEvent) => any; onMouseleave?: (event: RatingItemMouseEvent) => any; onMousemove?: (event: RatingItemMouseEvent) => any; }>, { dir: string; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { RatingItem };