@sheerid/jslib-nightly
Version:
SheerID JavaScript Library
13 lines (11 loc) • 451 B
TypeScript
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 {};