UNPKG

goobs-frontend

Version:

A comprehensive React-based libary for building modern web applications

19 lines 658 B
import { default as React } from 'react'; import { FormFieldStyles } from '../../../../theme'; export interface AccountNumberProps { onChange?: (value: string, isValid: boolean) => void; minLength?: number; maxLength?: number; isDefaultValue?: boolean; value?: string; label?: string; placeholder?: string; id?: string; onFocus?: (e: React.FocusEvent<HTMLInputElement>) => void; onBlur?: (e: React.FocusEvent<HTMLInputElement>) => void; helperText?: string; styles?: FormFieldStyles; } declare const AccountNumber: React.FC<AccountNumberProps>; export default AccountNumber; //# sourceMappingURL=index.d.ts.map