/// import type { PDSTextType } from '../../../common/types'; type Props = { id?: string; type: 'single' | 'range'; date: string; endDate?: string; minDate?: string; maxDate?: string; startOfWeek?: 'sunday' | 'monday'; quickActionMode?: 'use' | 'none'; quickActionBtnText?: PDSTextType; onChange?: (val1: string, val2?: string) => void; }; declare const DatePicker: ({ id, type, date, endDate, minDate, maxDate, startOfWeek, quickActionMode, quickActionBtnText, onChange }: Props) => JSX.Element; export default DatePicker;