import type { ComponentProps, FC, PropsWithChildren } from 'react'; export interface CopyrightProps extends PropsWithChildren> { href?: string; by: string; year?: number; } export declare const FooterCopyright: FC;