@trussworks/react-uswds
Version:
React USWDS 3 component library
13 lines (12 loc) • 469 B
TypeScript
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;