/** @jsx jsx */ import { FC } from 'react'; import { ActionItem } from '../ActionBar'; export interface ActionContainerProps { /** * optional actions provided to the component */ actions?: ActionItem[]; /** * if plain, skip the border and spacing around the children */ plain?: boolean; } /** * Container box with actions. */ export declare const ActionContainer: FC;