import React from 'react';
import { Moment } from 'moment-timezone';
import 'react-datetime/css/react-datetime.css';
export declare type CalendarWithIconFormGroupProps = {
    value: string | Moment;
    setterCallback: (value: string | Moment) => void;
    label?: string;
    disabled?: boolean;
    isValidDate?: (currentDate: any) => boolean;
};
export declare const CalendarWithIconFormGroup: React.FunctionComponent<CalendarWithIconFormGroupProps>;
