import React, { type CSSProperties } from 'react';
import type { TdColorBaseProps } from '../../interface';
export interface TdColorSliderProps extends TdColorBaseProps {
    className?: string;
    value?: Number;
    maxValue?: Number;
    railStyle?: CSSProperties;
    type: 'hue' | 'alpha';
}
declare const _default: React.MemoExoticComponent<(props: TdColorSliderProps) => React.JSX.Element>;
export default _default;
