import * as react from 'react';
import { HTMLAttributes } from 'react';

interface CardFooterProps extends HTMLAttributes<HTMLDivElement> {
    elementType?: string;
}
declare const _CardFooter: react.ForwardRefExoticComponent<CardFooterProps & react.RefAttributes<HTMLDivElement>>;

export { _CardFooter as CardFooter, CardFooterProps };
