import React from 'react'; import { ErrorType } from './Input'; export type DateRangeSingleProps = ErrorType & { id: string; label: string; initialStartDate?: Date; initialEndDate?: Date; required?: boolean; className?: string; appendClassName?: string; onChange?: (dates: Date[]) => void; inline?: boolean; isClearable?: boolean; style?: React.CSSProperties; }; export declare const DateRangeSingleCalendar: ({ id, label, initialStartDate, initialEndDate, required, onChange, inline, isClearable, className, appendClassName, error, errorClassName, style }: DateRangeSingleProps) => import('./react/jsx-runtime.js').JSX.Element;