import { type CSSProperties, type InputHTMLAttributes } from 'react'; import { type CssLength } from '../../../utils/css'; import { type DragonRageMeterMood } from './DragonRageMeter.utils'; type DragonRageMeterProps = { value?: number; defaultValue?: number; onChange?: (value: number) => void; label?: string; statusLabel?: string; minLabel?: string; maxLabel?: string; disabled?: boolean; name?: string; id?: string; width?: CssLength; height?: CssLength; dragonImageSrc?: string; className?: string; style?: CSSProperties; inputProps?: Omit, 'aria-label' | 'aria-valuetext' | 'className' | 'disabled' | 'id' | 'max' | 'min' | 'name' | 'onChange' | 'step' | 'style' | 'type' | 'value'>; }; declare const DragonRageMeter: ({ value, defaultValue, onChange, label, statusLabel, minLabel, maxLabel, disabled, name, id, width, height, dragonImageSrc, className, style, inputProps, }: DragonRageMeterProps) => import("react/jsx-runtime").JSX.Element; export { DragonRageMeter }; export type { DragonRageMeterMood, DragonRageMeterProps };