import { FormFieldComponentProps } from '../../../lib/types/types'; type Props = Omit & { locale?: string; /** * @deprecated deprecated in favor of using errorId instead */ isErrored?: boolean; mode?: "date" | "month"; }; export declare const DischargeDateComponent: ({ onChange, errorId, isErrored, value, disabled, locale, mode, }: Props) => import("react/jsx-runtime").JSX.Element; export {};