import * as React from 'react'; import { Action } from '../state'; export declare class ActionTab extends React.Component { render(): JSX.Element; } interface ActionTabProps { action: Action; styling: any; base16Theme: any; labelRenderer: any; } export {};