import React from "react";
type FooterProps = {
theme?: "light" | "dark";
useGradient?: boolean;
gradientColors?: [string, string];
gradientDirection?: string;
backgroundColor?: string;
logoVariant?: "light" | "dark";
};
export declare const Footer: React.FC<FooterProps>;
export {};