import * as React from 'react'; export interface HeaderProps extends React.HTMLAttributes { [x: string]: unknown; ref?: React.Ref; shouldRender?: boolean; } export interface HeaderRefCurrent { wrapper: HTMLHeadingElement | null; }