import { FormFieldComponentProps } from '../../../lib/types/types';
interface PassedProps {
    explanation?: string | JSX.Element;
}
declare const PostalCodeComponent: ({ value, isErrored, onChange, explanation, }: FormFieldComponentProps & PassedProps) => JSX.Element;
export { PostalCodeComponent };
