import { FC } from "react"; export interface keepTitleTheme { base: string; title: string; filter: { text: string; icon: string; }; } export interface TitleProps { children: string; } export declare const Title: FC;