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