import { ReactNode } from 'react'; import { BoxProps } from '@mui/material'; import { ICardFooterProps } from './CardFooter'; import { ICardHeaderProps } from './CardHeader'; export interface ICardProps { title?: string; width?: BoxProps['width']; height?: BoxProps['height']; children?: ReactNode; headerProps?: ICardHeaderProps; footerProps?: ICardFooterProps; containerProps?: BoxProps; sx?: BoxProps['sx']; } declare const Card: ({ width, height, footerProps, headerProps, children, title, sx, containerProps }: ICardProps) => import("react/jsx-runtime").JSX.Element; export default Card;