/// <reference types="react" />
import { DateTime } from 'luxon';
export interface Props {
    defaultDate?: string | Date;
    disabled?: boolean;
    onChange: (date: DateTime | undefined) => void;
}
declare const DateSelector: import("react").MemoExoticComponent<({ defaultDate, onChange, disabled }: Props) => JSX.Element>;
export default DateSelector;
