import type { AnchorHTMLAttributes, FC, ReactNode, Ref } from 'react'; export interface TopHeaderLogoProps extends AnchorHTMLAttributes { ref?: Ref; asChild?: boolean; children?: ReactNode; } export declare const TopHeaderLogo: FC;