import * as React from 'react';
export interface FooterProps {
    narrow?: boolean;
    footer?: React.ReactNode;
    children?: React.ReactNode;
}
export declare const Footer: React.FC<FooterProps>;
