jslib-nightly
Version:
SheerID JavaScript Library
12 lines (11 loc) • 714 B
TypeScript
/// <reference types="react-intl" />
import React from 'react';
import { FormFieldComponentProps } from '../../../lib/types/types';
interface PassedProps {
onKeyDown?: Function;
}
export declare const Address: ({ value, isErrored, onChange, intl, onKeyDown, placeholder, }: FormFieldComponentProps & PassedProps) => JSX.Element;
export declare const AddressComponent: React.ComponentClass<Pick<FormFieldComponentProps<any> & PassedProps, "errorId" | "isErrored" | "onChange" | "onKeyDown" | "autoFocus" | "placeholder" | "value" | "isRequired" | "verificationService">, any> & {
WrappedComponent: React.ComponentType<FormFieldComponentProps<any> & PassedProps & ReactIntl.InjectedIntlProps>;
};
export {};