import type { JSX } from 'react'; export type FooterCopyrightProps = { copyrightText: string; className?: string; }; export declare function FooterCopyright({ copyrightText, className }: FooterCopyrightProps): JSX.Element | null;