import { InputHTMLAttributes, ReactNode } from "react";
import { OverrideClassName } from "@kaizen/component-base";
export interface InputRangeProps extends OverrideClassName> {
id: string;
defaultValue?: number;
value?: number;
minLabel: ReactNode;
maxLabel: ReactNode;
min?: number;
max?: number;
}
/**
* @deprecated Please use the same component from `@kaizen/components`
*/
export declare const InputRange: {
(props: InputRangeProps): JSX.Element;
displayName: string;
};