import React from 'react'; interface Props { className?: string; } type NativeAttrs = Omit, keyof Props>; export type PageFooterProps = Props & NativeAttrs; declare const PageFooter: React.ForwardRefExoticComponent>; export default PageFooter;