import React from 'react'; import { DateValue } from '@react-types/calendar'; import { LabelledProps } from '../Labelled'; export type MultiMonthDatePickerProps = { /** Label for the field */ label: string; /** Error to display beneath the label */ error?: any; /** Adds an action to the label */ labelAction?: LabelledProps['action']; /** Visually hide the label */ labelHidden?: boolean; /** Visual required indicator, add an asterisk to label */ requiredIndicator?: boolean; /** Additional text to aide in use */ helpText?: React.ReactNode; /** Default Value */ defaultValues?: DateValue[]; selectedValues: DateValue[] | null; onChange?: (dates: DateValue[]) => void; minValue?: DateValue; maxValue?: DateValue; }; declare const MultiMonthPicker: React.ForwardRefExoticComponent>; export { MultiMonthPicker };