import { ReactNode } from "react"; export declare type CardFooterProps = { noSpacing?: boolean; children?: ReactNode; align?: "left" | "center" | "right"; }; export declare const CardFooter: ({ children, noSpacing, align, }: CardFooterProps) => import("@emotion/react/jsx-runtime").JSX.Element;