import React, { forwardRef } from "react"; import { cl } from "../utils/helpers"; export type HeaderProps = React.HTMLAttributes; export type HeaderType = React.ForwardRefExoticComponent< HeaderProps & React.RefAttributes >; export const Header: HeaderType = forwardRef(({ className, ...rest }, ref) => { return ( ); }); export default Header;