import React from 'react';
import { CardProps } from '@mui/material';
export interface CardFlexModel extends Omit<CardProps, 'component' | 'style' | 'borderRadius' | 'border' | 'ref' | 'color'> {
    borderRadius?: string;
    border?: string;
    shadow?: string;
    padding?: string;
    style?: React.CSSProperties;
    disabledHover?: boolean;
    backgroundColor?: string;
    hoverStyle?: 'shadow' | 'border';
    component?: React.ElementType<any>;
}
export declare const CardFlexible: React.FC<CardFlexModel>;
