@cerberus-design/react
Version:
The Cerberus Design React component library.
13 lines (12 loc) • 548 B
text/typescript
import { DatePickerInputElProps } from './primitives';
/**
* This private module contains the RangePickerInput component.
* @module RangePickerInput
*/
export type RangePickerInputProps = DatePickerInputElProps;
/**
* An abstraction of the DatePicker input that wraps the input and the
* triggers to open the DatePicker and clear the value.
* @definition [datePicker docs](https://cerberus.digitalu.design/react/date-picker)
*/
export declare function RangePickerInput(props: RangePickerInputProps): import("react/jsx-runtime").JSX.Element;