import { TextType } from '../../common/types';
import TextAbstract, { TextAbstractProps } from './TextAbstract';
export type TextProps = TextAbstractProps & {
    list?: TextType[];
    listOrderedIds?: string[];
};
export default class Text extends TextAbstract {
    list?: TextType[];
    listOrderedIds?: string[];
    constructor(props: TextProps);
}
