import { DatePickerProps } from "@mantine/dates"; import React, { ComponentType } from "react"; import { BaseInputProps } from "./BaseInput"; export type DatePickerInputProps = DatePickerProps & BaseInputProps & { minDateInput?: string; maxDateInput?: string; hint?: React.ReactNode; description?: React.ReactNode; component?: ComponentType; }; export declare function DatePickerInput({ minDateInput, maxDateInput, hint, label, required, placeholder, description, component: Component, minDate: incomingMinDate, maxDate: incomingMaxDate, ...props }: DatePickerInputProps): any; export declare namespace DatePickerInput { var defaultProps: { rules: any[]; }; } //# sourceMappingURL=DatePickerInput.d.ts.map