import { FC } from 'react';
export interface IRange {
    /**
     * Specify an optional className to be applied to the select box
     */
    className?: string;
    /**
     * Current theme
     */
    isDarkTheme: boolean;
    /**
     * Function called when the dropdown is closed
     */
    onClose: () => void;
}
declare const Range: FC<IRange>;
export default Range;
