///
import '../../styles/container.scss';
import { action } from "../actions";
declare type position = 'topLeft' | 'topRight' | 'topCenter' | 'bottomLeft' | 'bottomRight' | 'bottomCenter';
interface TContainer {
type: string;
actions?: Array[];
actionsPosition?: position;
body: any;
}
interface TProps {
data: TContainer;
}
declare function Index(props: TProps): JSX.Element;
export default Index;