///
import { StudioIconProps } from '../public/StudioIcon';
export interface CardProps extends Omit, 'size' | 'title'> {
children?: React.ReactNode;
title?: React.ReactNode | boolean;
titleClass?: string;
icon?: string | Partial;
className?: string;
classNameBody?: string;
bg?: string;
size?: '' | 'l' | 'm' | 's' | 'xs' | 'x2s';
shadow?: boolean;
padding?: boolean;
border?: boolean;
round?: boolean;
skipOverflow?: boolean;
style?: Record;
onClose?(): void;
}
declare const _default: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;
export default _default;