import React from 'react'; export interface ControlFormProps { label: string; description?: string; appendValueToTitle: boolean; onAppendValueToTitle?: () => void; isRequired: boolean; active?: boolean; } declare const FormControl: React.FC; export { FormControl };