import { AttributeInfo } from '../internal/attributeInfo';
import { ParagraphFormatBase } from './paragraphFormatBase';
export declare const importsMapParagraphFormat: {
    ParagraphFormatBase: typeof ParagraphFormatBase;
};
/**
 * Paragraph format element.
 */
export declare class ParagraphFormat extends ParagraphFormatBase {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    /**
     * Gets or sets a value indicating whether the paragraph is an item in a bulleted or numbered list.
     */
    isListItem: boolean;
    /**
     * Gets or sets a value indicating whether the paragraph style is one of the built-in Heading styles.
     */
    isHeading: boolean;
    constructor(init?: Partial<ParagraphFormat>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
