import React, { FunctionComponent, MouseEvent } from 'react'; export declare const ActionButton: import("@emotion/styled-base").StyledComponent, HTMLButtonElement>, { disabled: boolean; }, import("@storybook/theming").Theme>; export interface ActionItem { title: string | JSX.Element; onClick: (e: MouseEvent) => void; disabled?: boolean; } export interface ActionBarProps { actionItems: ActionItem[]; } export declare const ActionBar: FunctionComponent;