import React from 'react'; interface Props { value: string; className?: string; onChange?: (value: string) => void; } type NativeAttrs = Omit, keyof Props>; export type FieldsetGroupProps = Props & NativeAttrs; declare const FieldsetGroup: React.ForwardRefExoticComponent>; export default FieldsetGroup;