import { Theme } from "../utils.js";
import { ReactNode } from "react";
export declare function Container({ children, href, theme, }: {
    children: ReactNode;
    href?: string;
    theme?: Theme;
}): import("react").JSX.Element;
