import { Component, ComponentProps, ParentProps } from "solid-js"; export interface FooterTitleProps extends ParentProps> { title: string; } export declare const FooterTitle: Component;