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>;
export * from './mobile';
export * from './styled';