import { type ReactNode } from "react";
export interface FooterProps {
    children: ReactNode;
}
declare const Footer: ({ children }: FooterProps) => null;
export { Footer };
