/// <reference types="react" />
import { IdProps } from "./interface/IdProps";
import { StyleProps } from "./interface/StyleProps";
export interface FooterProps extends StyleProps, IdProps, React.PropsWithChildren<any> {
}
export declare const Footer: ({ id, style, className, children }: FooterProps) => import("react/jsx-runtime").JSX.Element;
