import React from 'react'; interface Props { className?: string; } type NativeAttrs = Omit, keyof Props>; export type FieldsetTitleProps = Props & NativeAttrs; declare const FieldsetTitle: React.FC>; export default FieldsetTitle;