import React, { Component } from 'react'; import type { ContextAction } from './ContextActionUtils'; interface GlobalContextActionsProps { actions: ContextAction[]; 'data-testid'?: string; } declare class GlobalContextActions extends Component { render(): React.ReactNode; } export default GlobalContextActions; //# sourceMappingURL=GlobalContextActions.d.ts.map