import { default as React } from 'react';
export interface CardFooterProps extends React.HTMLAttributes<HTMLDivElement> {
    footer?: React.ReactNode;
    alignment?: 'left' | 'center' | 'right';
}
export declare const CardFooter: React.FC<CardFooterProps>;
export default CardFooter;
