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 {};
