import React from 'react';
export interface FooterProps extends React.PropsWithChildren {
    id?: string;
    logo?: React.ReactNode;
    nav?: React.ReactNode;
}
export declare const Footer: React.FC<FooterProps & React.HTMLAttributes<HTMLElement>>;
export * from './mobile';
export * from './styled';
