/// export interface Action { label: string; triggerAction: () => void; } export interface IInstanceActionsProps { actions: Action[]; title?: string; } export declare const InstanceActions: ({ actions, title }: IInstanceActionsProps) => JSX.Element;