import { CardProps as DefaultCardProps } from 'antd';
import React, { CSSProperties } from 'react';
export type CardProps = Omit<React.HTMLAttributes<HTMLDivElement>, 'title'> & Pick<DefaultCardProps, 'hoverable' | 'title'> & {
    width?: CSSProperties['width'];
    bodyPadding?: CSSProperties['padding'];
    titlePadding?: CSSProperties['padding'];
    accent?: boolean;
    active?: boolean;
    disabled?: boolean;
};
declare const Card: React.ForwardRefExoticComponent<Omit<React.HTMLAttributes<HTMLDivElement>, "title"> & Pick<DefaultCardProps, "title" | "hoverable"> & {
    width?: CSSProperties["width"];
    bodyPadding?: CSSProperties["padding"];
    titlePadding?: CSSProperties["padding"];
    accent?: boolean;
    active?: boolean;
    disabled?: boolean;
} & React.RefAttributes<HTMLDivElement>>;
export { Card, };
//# sourceMappingURL=card.d.ts.map