import { InjectedIntlProps } from 'react-intl'; interface PostalCodeInputProps extends InjectedIntlProps { onChange: Function; value: any; isValid?: boolean; ariaLabelledBy: string; placeholder?: string; } export declare const PostalCodeInputComponent: import('react').ComponentClass, any> & { WrappedComponent: import('react').ComponentType; }; export {};