import { type AriaLabelingProps, type DataTestId, type StylingProps, type WithChildren } from '@dynatrace/strato-components/core'; /** * Accepted properties for the AppIcon. * @public */ export interface AppIconProps extends AriaLabelingProps, WithChildren, StylingProps, DataTestId { /** * The path to the app icon. If not specified, the icon from the app registry is retrieved automatically. */ src?: string; /** * The alternative text representation for the image when it's not loaded. If not specified, the app name is used. */ alt?: string; } /** * The `AppIcon` component renders the icon used for the app on the platform. * You can also provide a link to an icon to render that icon instead. * @public */ export declare const AppIcon: { (props: AppIconProps): import("react/jsx-runtime.js").JSX.Element; displayName: string; };