import { type InputRangeProps } from '../InputRange/InputRangeProps'; interface MonthsInputParams extends InputRangeProps { availableMonths?: Array; } export declare const renderMonthsInput: ({ min, max, availableMonths, ...rest }: MonthsInputParams) => any; export {};