import { Component, ComponentProps, ParentProps } from "solid-js"; export interface CopyrightProps extends ParentProps> { href?: string; by: string; year?: number; } export declare const FooterCopyright: Component;