import React from 'react';
import { CardProps as MuiCardProps } from '@mui/material';
export interface CardProps extends Omit<MuiCardProps, 'variant'> {
    /**
     * The variant of the card
     */
    variant?: 'elevation' | 'outlined';
    /**
     * Whether the card is hoverable
     */
    hoverable?: boolean;
    /**
     * The header content of the card
     */
    header?: React.ReactNode;
    /**
     * The main content of the card
     */
    children?: React.ReactNode;
    /**
     * The actions section of the card
     */
    actions?: React.ReactNode;
    /**
     * Custom padding for the content
     */
    contentPadding?: number | string;
}
export declare const Card: React.FC<CardProps>;
//# sourceMappingURL=Card.d.ts.map