import type { FC, ReactText } from 'react'; import type { TTheme } from '../../types'; export declare type TLineElement = { type: string; theme: TTheme; children: ReactText; }; export declare const LineElement: FC;