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?: import("styled-components").DefaultTheme | undefined;
}>;
export default ThemedSlider;
