import type { ComponentProps, FC, PropsWithChildren } from 'react'; export interface FooterTitleProps extends PropsWithChildren> { title: string; } export declare const FooterTitle: FC;