import { AttributeInfo } from '../internal/attributeInfo';
import { NodeLink } from './nodeLink';
export declare const importsMapParagraph: {
    NodeLink: typeof NodeLink;
};
/**
 * DTO container with a paragraph element.
 */
export declare class Paragraph extends NodeLink {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    /**
     * Gets or sets the list of child nodes.
     */
    childNodes: Array<NodeLink>;
    constructor(init?: Partial<Paragraph>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
