import React from "react"; import { TextFieldProps } from "@mui/material"; export declare type DateRangePickerProps = { value: [Date | null, Date | null]; minDate?: Date | string; maxDate?: Date | string; format?: string; TextFieldProps?: TextFieldProps; onChange: (dateRange: [Date | null, Date | null]) => void; }; export declare const DateRangePicker: React.FC; //# sourceMappingURL=index.d.ts.map