import React from 'react'; import { Theme } from '../../../models/Theme'; interface Title { active?: boolean; color?: string; dir?: string; fontSize?: string; theme?: Theme; title?: string; url?: string; } interface Content { color?: string; content?: string; dir?: string; fontSize?: string; theme?: Theme; } declare const MemoTitle: React.MemoExoticComponent<({ title, url, theme, color, dir, active, fontSize }: Title) => JSX.Element | null>; declare const MemoSubTitle: React.NamedExoticComponent; export { MemoTitle, MemoSubTitle };