import React from 'react';
/**
* Props for the LogoComponent.
* @since 2.7.0
*/
export interface LogoComponentProps {
/** Custom styles for the logo container */
style?: React.CSSProperties;
/** Custom link path (overrides branding logoLink if provided) */
linkTo?: string;
}
/**
* Public API Logo component that displays the application logo.
* Uses the branding configuration from BrandingProvider.
*
* This component is part of the theme-basic public API and can be
* replaced using the component replacement system with eThemeBasicComponents.Logo.
*
* @since 2.7.0 - Added as public API component
*
* @example
* ```tsx
* // Basic usage
*
*
* // With custom link
*
* ```
*/
export declare function LogoComponent({ style, linkTo }: LogoComponentProps): React.ReactElement;
export default LogoComponent;