import { IconComponent } from '../../icons'; /** * API for accessing app icons. * * @public */ export interface IconsApi { getIcon(key: string): IconComponent | undefined; listIconKeys(): string[]; } /** * The `ApiRef` of {@link IconsApi}. * * @public */ export declare const iconsApiRef: import("@backstage/core-plugin-api").ApiRef;