import { AriaLabelingProps } from '../../../core/types/a11y-props.js'; import { DataTestId } from '../../../core/types/data-props.js'; import { StylingProps } from '../../../core/types/styling-props.js'; import { WithChildren } from '../../../core/types/with-children.js'; /** * 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").JSX.Element; displayName: string; };