import { default as React, AriaAttributes } from 'react'; import { PriceProps, SliderProps } from '../../'; export interface PriceRangeProps extends Omit { /** * The current use case variant for prices. */ variant?: PriceProps['variant']; /** * Formatter function that transforms the raw price value and render the result. */ formatter: PriceProps['formatter']; /** * Defines a string value that labels the current element. */ 'aria-label'?: AriaAttributes['aria-label']; /** * Label for the minimum value input field. */ minLabel?: string; /** * Label for the maximum value input field. */ maxLabel?: string; /** * Error message for the minimum price input field. */ minPriceErrorMessage?: string; /** * Error message for the maximum price input field. */ maxPriceErrorMessage?: string; } type PriceRangeRefType = { setPriceRangeValues: (values: { min: number; max: number; }) => void; }; declare const PriceRange: React.ForwardRefExoticComponent>; export default PriceRange; //# sourceMappingURL=PriceRange.d.ts.map