import { AttributeInfo } from '../internal/attributeInfo';
import { ModelInterface } from './modelInterface';
import { Position } from './position';
export declare const importsMapParagraphInsert: {
    Position: typeof Position;
};
/**
 * DTO container with a paragraph's text.
 */
export declare class ParagraphInsert implements ModelInterface {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    /**
     * Gets or sets the paragraph's text.
     */
    text: string;
    /**
     * Gets or sets the position of the node that will be used to determine the placement of a new paragraph.
     */
    position: Position;
    constructor(init?: Partial<ParagraphInsert>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
