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

export interface IFooterOwnProps
  extends
    HTMLAttributes<HTMLElement>,
    RefAttributes<HTMLElement> {};
