import { Component, PropsOf } from '@builder.io/qwik'; import type { LinkProps } from '@builder.io/qwik-city'; export interface CopyrightProps extends PropsOf<'div'> { by: string; href?: string; year?: number; tag?: Component | 'a'; } export declare const FooterCopyright: Component;