import React, { FC } from 'react'; import { SxProps } from '@mui/material'; interface CardFooterProps { sx?: SxProps; disableSpacing?: boolean; className?: string; children?: React.ReactNode; } export declare const CardFooter: FC; export {};