import { Component, PropsOf } from '@builder.io/qwik'; import type { LinkProps } from '@builder.io/qwik-city'; type SidebarLogoProps = PropsOf<'a'> & { name?: string; logo?: { url: string; alt?: string; }; tag?: Component | 'a'; }; export declare const SidebarLogo: Component; export {};