import { default as React } from 'react';
import { FormFieldComponentProps } from '../../../lib/types/types';

type Props = Omit<FormFieldComponentProps, "isErrored"> & {
    locale: string;
    /**
     * @deprecated deprecated in favor of using errorId instead
     */
    isErrored?: boolean;
};
export declare const ActiveDutyStartDateComponent: ({ onChange, errorId, isErrored, value, locale, disabled, }: Props) => React.JSX.Element;
export {};
