import React from 'react'; import FooterFoot from './footer-foot'; import FooterGroup from './footer-group'; import FooterLink from './footer-link'; interface Props { className?: string; } declare const defaultProps: { className: string; }; type NativeAttrs = Omit, keyof Props>; export type FooterProps = Props & typeof defaultProps & NativeAttrs; type MemoPageComponent

= React.NamedExoticComponent

& { Group: typeof FooterGroup; Foot: typeof FooterFoot; Link: typeof FooterLink; }; type ComponentProps = Partial & Omit & NativeAttrs; declare const _default: MemoPageComponent; export default _default;