import * as React from "react"; import type { RangeSliderPrimitiveProps } from "./primitives/index.js"; import type { FormComponentProps } from "../FormComponent/index.js"; type RangeSliderProps = RangeSliderPrimitiveProps & FormComponentProps & { label: React.ReactNode; valueConverter?: (value: number) => string; }; declare const RangeSlider: (({ description, note, hint, validation, ...props }: RangeSliderProps) => React.JSX.Element) & { original: ({ description, note, hint, validation, ...props }: RangeSliderProps) => React.JSX.Element; originalName: string; displayName: string; } & { original: (({ description, note, hint, validation, ...props }: RangeSliderProps) => React.JSX.Element) & { original: ({ description, note, hint, validation, ...props }: RangeSliderProps) => React.JSX.Element; originalName: string; displayName: string; }; originalName: string; displayName: string; } & { createDecorator: (decorator: import("@webiny/react-composition/types.js").ComponentDecorator<(({ description, note, hint, validation, ...props }: RangeSliderProps) => React.JSX.Element) & { original: ({ description, note, hint, validation, ...props }: RangeSliderProps) => React.JSX.Element; originalName: string; displayName: string; }>) => (props: unknown) => React.JSX.Element; }; export { RangeSlider, type RangeSliderProps };