import { FC } from 'react';
import { SlideProps, CardContentProps, ButtonBaseProps } from '@mui/material';
export interface FlippingCardContentProps extends CardContentProps {
/**
* Disabled state
*/
disabled?: boolean;
/**
* Specifies if detail should be flipped on card hover
* @default true
*/
flipOnHover?: boolean;
/**
* Specifies if detail should be flipped
* @default false
*/
isFlipped?: boolean;
/**
* Properties applied to wrapper component
*/
containerProps?: ButtonBaseProps;
/**
* Properties applied to component
*/
slideProps?: Omit;
}
/**
* Sub-element for Card component for flipping content
*/
export declare const FlippingCardContent: FC;