diff --git a/packages/core-components/report.api.md b/packages/core-components/report.api.md
index b2872a086b..c3f7cf9a6a 100644
--- a/packages/core-components/report.api.md
+++ b/packages/core-components/report.api.md
@@ -6,7 +6,6 @@
///
import { ApiRef } from '@backstage/core-plugin-api';
-import { AutocompleteProps } from '@material-ui/lab/Autocomplete';
import { BackstageIdentityApi } from '@backstage/core-plugin-api';
import { BackstagePalette } from '@backstage/theme';
import { BackstageUserIdentity } from '@backstage/core-plugin-api';
@@ -34,7 +33,6 @@ import { MaterialTableProps } from '@material-table/core';
import { NavLinkProps } from 'react-router-dom';
import { Options } from 'react-markdown';
import { Options as Options_2 } from '@material-table/core';
-import { OutlinedTextFieldProps } from '@material-ui/core/TextField';
import { Overrides } from '@material-ui/core/styles/overrides';
import { ProfileInfo } from '@backstage/core-plugin-api';
import { ProfileInfoApi } from '@backstage/core-plugin-api';
@@ -53,7 +51,6 @@ import { StyleRules as StyleRules_2 } from '@material-ui/core/styles/withStyles'
import { TabProps } from '@material-ui/core/Tab';
import { Theme } from '@material-ui/core/styles';
import { TooltipProps } from '@material-ui/core/Tooltip';
-import { TypographyProps } from '@material-ui/core/Typography';
import { WithStyles } from '@material-ui/core/styles';
// @public
@@ -79,38 +76,6 @@ export type AppIconProps = IconComponentProps & {
Fallback?: IconComponent;
};
-// @public (undocumented)
-export function Autocomplete<
- T,
- Multiple extends boolean | undefined = undefined,
- DisableClearable extends boolean | undefined = undefined,
- FreeSolo extends boolean | undefined = undefined,
->(
- props: AutocompleteComponentProps,
-): React_2.JSX.Element;
-
-// @public (undocumented)
-export type AutocompleteComponentProps<
- T,
- Multiple extends boolean | undefined = undefined,
- DisableClearable extends boolean | undefined = undefined,
- FreeSolo extends boolean | undefined = undefined,
-> = Omit<
- AutocompleteProps,
- 'PopperComponent' | 'PaperComponent' | 'popupIcon' | 'renderInput'
-> & {
- name: string;
- label?: string;
- LabelProps?: TypographyProps<'label'>;
- TextFieldProps?: Omit;
- renderInput?: AutocompleteProps<
- T,
- Multiple,
- DisableClearable,
- FreeSolo
- >['renderInput'];
-};
-
// @public
export const AutoLogout: (props: AutoLogoutProps) => JSX.Element | null;