UNPKG

@sheerid/jslib-nightly

Version:

SheerID JavaScript Library

11 lines (10 loc) 627 B
import { default as React } from 'react'; import { FormFieldComponentProps } from '../../../lib/types/types'; interface PassedProps { explanation?: string | JSX.Element; required?: boolean; } export declare const PostalCodeComponent: React.ComponentClass<Pick<FormFieldComponentProps<any> & PassedProps, "isErrored" | "onChange" | "value" | "disabled" | "onKeyDown" | "label" | "placeholder" | "autoFocus" | "isRequired" | "errorId" | "verificationService" | keyof PassedProps>, any> & { WrappedComponent: React.ComponentType<FormFieldComponentProps<any> & PassedProps & ReactIntl.InjectedIntlProps>; }; export {};