UNPKG

@sheerid/jslib-nightly

Version:

SheerID JavaScript Library

15 lines (13 loc) 542 B
import { default as React } from 'react'; import { InjectedIntlProps } from 'react-intl'; interface PostalCodeInputProps extends InjectedIntlProps { onChange: Function; value: any; isValid?: boolean; ariaLabelledBy: string; placeholder?: string; } export declare const PostalCodeInputComponent: React.ComponentClass<Pick<PostalCodeInputProps, "onChange" | "value" | "placeholder" | "isValid" | "ariaLabelledBy">, any> & { WrappedComponent: React.ComponentType<PostalCodeInputProps & InjectedIntlProps>; }; export {};