import React from 'react'; interface Props { disableAutoMargin?: boolean; className?: string; } type NativeAttrs = Omit, keyof Props>; export type CardFooterProps = Props & NativeAttrs; declare const CardFooter: React.ForwardRefExoticComponent>; export default CardFooter;