/// import { BoxProps } from '@mui/material/Box'; export interface ICardFooterProps { children?: React.ReactNode; actions?: React.ReactNode; containerProps?: BoxProps; } declare const CardFooter: ({ children, actions, containerProps }: ICardFooterProps) => import("react/jsx-runtime").JSX.Element; export default CardFooter;