UNPKG

jslib-nightly

Version:

SheerID JavaScript Library

12 lines (11 loc) 760 B
/// <reference types="react-intl" /> import React from 'react'; import { FormFieldComponentProps } from '../../../lib/types/types'; interface PassedProps { explanation?: string | JSX.Element; } export declare const MemberId: ({ value, isErrored, onChange, explanation, intl, placeholder, isRequired, }: FormFieldComponentProps & PassedProps) => JSX.Element; export declare const MemberIdComponent: React.ComponentClass<Pick<FormFieldComponentProps<any> & PassedProps, "errorId" | "isErrored" | "onChange" | "onKeyDown" | "autoFocus" | "placeholder" | "value" | "isRequired" | "verificationService" | "explanation">, any> & { WrappedComponent: React.ComponentType<FormFieldComponentProps<any> & PassedProps & ReactIntl.InjectedIntlProps>; }; export {};