import React from 'react'; declare type InputFieldGroupProps = { width?: number; fullWidth?: boolean; errors: { [k: string]: string | undefined; }; }; declare const InputFieldGroup: React.FC; export default InputFieldGroup;