diff --git a/plugins/api-docs/api-report.md b/plugins/api-docs/api-report.md
index 74a0dc07dd..de36857945 100644
--- a/plugins/api-docs/api-report.md
+++ b/plugins/api-docs/api-report.md
@@ -5,6 +5,7 @@
```ts
///
+import { Action } from '@material-table/core';
import { ApiEntity } from '@backstage/catalog-model';
import { ApiRef } from '@backstage/core-plugin-api';
import { BackstagePlugin } from '@backstage/core-plugin-api';
@@ -58,9 +59,20 @@ export { apiDocsPlugin as plugin };
export const ApiExplorerPage: ({
initiallySelectedFilter,
columns,
+ actions,
}: {
initiallySelectedFilter?: UserListFilterKind | undefined;
columns?: TableColumn[] | undefined;
+ actions?:
+ | (
+ | Action
+ | {
+ action: (rowData: CatalogTableRow) => Action;
+ position: string;
+ }
+ | ((rowData: CatalogTableRow) => Action)
+ )[]
+ | undefined;
}) => JSX.Element;
// Warning: (ae-missing-release-tag) "ApiTypeTitle" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)