import { FC, ReactNode } from 'react'; export interface TextProps { title: string; text?: ReactNode; } declare const Text: FC; export default Text;