import { MaskedCharacterProperties } from '../../../../../model/character/character-properties';
import { ListLevelProperties } from '../../../../../model/numbering-lists/list-level-properties';
import { MaskedParagraphProperties } from '../../../../../model/paragraph/paragraph-properties';
export declare class RtfListLevel {
    characterProperties: MaskedCharacterProperties;
    paragraphProperties: MaskedParagraphProperties;
    listLevelProperties: ListLevelProperties;
    text: string;
    numbers: string;
    constructor();
    private initialize;
    createDisplayFormatString(): string;
    createPlaceholderIndices(): number[];
    createDisplayFormatStringCore(placeholderIndices: number[]): string;
}
