declare const states: ("active" | "focus" | "disabled" | "readonly" | "hover")[];
export type KendoSliderProps = {
    type?: 'single' | 'range' | 'gradient';
    orientation?: 'horizontal' | 'vertical';
    dir?: 'ltr' | 'rtl';
    handlePosition?: 'start' | 'end';
    trackStyle?: React.CSSProperties;
    showButtons?: boolean;
    showTicks?: boolean;
};
export type KendoSliderState = {
    [K in (typeof states)[number]]?: boolean;
};
export declare const Slider: {
    (props: KendoSliderProps & KendoSliderState & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
    states: ("active" | "focus" | "disabled" | "readonly" | "hover")[];
    options: {};
    className: string;
    defaultOptions: {
        type: string;
        orientation: string;
        readonly: boolean;
        disabled: boolean;
        handlePosition: string;
        showButtons: boolean;
        showTicks: boolean;
    };
};
export default Slider;
