UNPKG

@trussworks/react-uswds

Version:
13 lines (12 loc) 469 B
import { JSX } from 'react'; import { DatePickerProps } from '../DatePicker/DatePicker'; export type DateRangePickerProps = { startDateLabel?: string; startDateHint?: string; startDatePickerProps: Omit<DatePickerProps, 'rangeDate'>; endDateLabel?: string; endDateHint?: string; endDatePickerProps: Omit<DatePickerProps, 'rangeDate'>; className?: string; }; export declare const DateRangePicker: (props: DateRangePickerProps) => JSX.Element;