@sheerid/jslib-nightly
Version:
SheerID JavaScript Library
8 lines (6 loc) • 810 B
TypeScript
import { default as React } from 'react';
import { FormFieldComponentProps, VerificationServiceProps, Organization } from '../../../lib/types/types';
export declare const CollegeName: ({ value, isErrored, onChange, verificationService, intl, placeholder, isRequired, disabled, }: FormFieldComponentProps<Organization> & VerificationServiceProps) => React.JSX.Element;
export declare const CollegeNameComponent: React.ComponentClass<Pick<FormFieldComponentProps<Organization> & VerificationServiceProps, "isErrored" | "onChange" | "value" | "disabled" | "onKeyDown" | "label" | "placeholder" | "autoFocus" | "isRequired" | "errorId" | "verificationService">, any> & {
WrappedComponent: React.ComponentType<FormFieldComponentProps<Organization> & VerificationServiceProps & ReactIntl.InjectedIntlProps>;
};