declare const Footer: import("react").ForwardRefExoticComponent<{
    className?: string | undefined;
    style?: import("react").CSSProperties | undefined;
} & {
    isCenter?: boolean;
    orientation?: "horizontal" | "vertical";
    children: React.ReactNode;
} & import("react").RefAttributes<HTMLElement>>;
export default Footer;
