///
import { Theme } from "@mui/material/styles";
import { SxProps } from "@mui/system";
import { PropsWithFunctionChildren } from "../Root/Root";
declare type Props = JSX.IntrinsicElements["footer"];
export declare type FooterClassKey = "root";
export interface FooterProps extends Props {
sx?: SxProps;
}
export declare const Footer: ({ children, ...props }: PropsWithFunctionChildren) => JSX.Element;
export {};