import React from "react";
import { SpaceProps } from "styled-system";
import { CardContextProps } from "../__internal__/card.context";
import { TagProps } from "../../../__internal__/utils/helpers/tags/tags";
export interface CardFooterProps extends SpaceProps, Partial<Pick<CardContextProps, "roundness">>, TagProps {
    /** Child nodes */
    children: React.ReactNode;
    /** Specify styling variant to render */
    variant?: "default" | "transparent";
}
declare const CardFooter: {
    ({ children, variant, ...rest }: CardFooterProps): React.JSX.Element;
    displayName: string;
};
export default CardFooter;
