import {
  HTMLAttributes,
  RefAttributes,
} from 'react';

export interface IHeaderOwnProps
  extends
    HTMLAttributes<HTMLElement>,
    RefAttributes<HTMLElement> {}
