import { InputProps, Input } from '../../../../ui/index.js';
import * as Inputs from '../../../../ui/components/form/index.js';
export interface InputRangePickerProps {
    InputStart: Input;
    InputEnd: Input;
}
interface Input extends InputProps {
    InputComponent: keyof typeof Inputs;
}
export declare function InputRangePicker({ InputStart, InputEnd, placeholder, onChangeInput, }: InputRangePickerProps & InputProps): import("react/jsx-runtime").JSX.Element;
export {};
