import * as React from 'react'; export interface FooterProps extends React.HTMLAttributes { [x: string]: unknown; ref?: FooterRefCurrent; shouldRender?: boolean; } export interface FooterRefCurrent { wrapper: HTMLElement | null; } export declare const Footer: React.FC;