import { type ElementType, type ReactElement } from 'react'; import type { AriaLabelingProps, DataTestId, MaskingProps, PolymorphicComponentProps, StylingProps, WithChildren } from '@dynatrace/strato-components/core'; /** * @public */ export interface AppHeaderLogoOwnProps extends DataTestId, MaskingProps, StylingProps, AriaLabelingProps, WithChildren { appName?: string; appIcon?: string; href?: string; } /** * @public */ export interface AppNavLinkInternalOwnProps extends AppHeaderLogoOwnProps { /** Has no effect. Will be deprecated. */ pin?: boolean; } /** * @public */ export type AppHeaderLogoProps = PolymorphicComponentProps; /** * App logo with icon and app name * @public */ export declare const Logo: (props: AppHeaderLogoProps) => ReactElement | null;