import * as React from 'react'; interface PropTypes { title: string; errorMessage?: string; inputWidth?: number; children: React.ReactNode; } declare function FieldSet({ title, errorMessage, inputWidth, children }: PropTypes): JSX.Element; declare namespace FieldSet { var defaultProps: { errorMessage: string; inputWidth: number; }; } export default FieldSet;