@kiwicom/orbit-components
Version:
Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.
25 lines (24 loc) • 1.07 kB
TypeScript
import * as React from "react";
import type { Value } from "./types";
declare const ThemedSlider: React.ForwardRefExoticComponent<{
readonly dataTest?: string | undefined;
readonly ariaLabel?: import("./types").Label | undefined;
readonly label?: React.ReactNode;
readonly id?: string | undefined;
readonly defaultValue?: Value | undefined;
readonly onChange?: import("./types").Callback | undefined;
readonly step?: number | undefined;
readonly ariaValueText?: string | undefined;
readonly histogramData?: import("./types").Data | undefined;
readonly histogramLoading?: boolean | undefined;
readonly maxValue?: number | undefined;
readonly minValue?: number | undefined;
readonly onChangeAfter?: import("./types").Callback | undefined;
readonly onChangeBefore?: import("./types").Callback | undefined;
readonly histogramDescription?: React.ReactNode;
readonly histogramLoadingText?: React.ReactNode;
readonly valueDescription?: React.ReactNode;
} & {
theme?: any;
}>;
export default ThemedSlider;