/// import type { LocalizedButton } from '../LocalizedButton'; import type { PDSTextType } from '../../../common/types'; type BasicFormGroupProps = { titleStyleTheme?: 'headingBold' | 'leadParaBold' | 'subTitleBold'; headerSize?: 'small' | 'medium' | 'large' | 'rlarge'; titleText?: PDSTextType; descText?: PDSTextType; captionText?: PDSTextType; inputForm?: JSX.Element; titleRequirementMode?: 'use' | 'none'; localizedButton?: React.ReactElement>; }; declare function BasicFormGroup({ titleStyleTheme, headerSize, titleText, descText, captionText, inputForm, titleRequirementMode, localizedButton }: BasicFormGroupProps): JSX.Element; export default BasicFormGroup;