import React from 'react'; import { ActionHeaderProps } from '../action-header/action-header'; export interface WidgetContainerProps { className?: string; children?: React.ReactNode; styles?: { root: {}; body: {}; }; bodyStyles?: {}; actionHeaderProps?: ActionHeaderProps; } export declare const BASE_PROPS: WidgetContainerProps; declare const WidgetContainer: React.FC; export default WidgetContainer;