import React from "react";
import { CardProps } from "@material-ui/core";
declare type CardWrapperProps = CardProps & {
    cardStyle?: any;
};
export declare type WidgetCardProps = CardWrapperProps & {
    actions?: React.ReactNode;
    beforeactions?: any[];
    cardStyle?: Function;
    children: React.ReactNode;
    contentStyle?: Function;
    customStyle?: Function;
    headerCustomStyle?: Function;
};
declare const _default: ({ customStyle, contentStyle, ...props }: WidgetCardProps) => JSX.Element;
export default _default;
