@trussworks/react-uswds
Version:
React USWDS 3.0 component library
14 lines (13 loc) • 524 B
TypeScript
import { default as React } from 'react';
import { DatePickerProps } from '../DatePicker/DatePicker';
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.IntrinsicElements['div']) => React.ReactElement;
export {};