import React from 'react'; import './FieldWrapper.scss'; export type FieldWrapperProps = { label: string; required: boolean; description: string; error?: string; children?: React.ReactNode; }; declare const FieldWrapper: React.FC; export default FieldWrapper;