import { TitleProps } from "./Title.types"; /** * @class * Title Group Component * @param {string} title title of Group */ declare const Group: ({ title }: TitleProps) => JSX.Element; export default Group;