/** @jsx jsx */ import { FC } from 'react'; import { ActionItems } from './utils'; export interface ActionBarProps { /** * collection of action items */ actions?: ActionItems; /** * custom layouts from the theme, defaults to 'actionbar' */ themeKey?: string; } /** * A strip of actions to be attached to a container. * The action items contain the labels and click event handlers. * Actions can accept an order prop, and can also overwrite default actions. * */ export declare const ActionBar: FC;