import { AttributeInfo } from '../internal/attributeInfo';
import { LinkElement } from './linkElement';
export declare const importsMapListFormat: {
    LinkElement: typeof LinkElement;
};
/**
 * DTO container with a paragraph list format element.
 */
export declare class ListFormat extends LinkElement {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    /**
     * Gets or sets the list level number (0 to 8) for the paragraph.
     * In Word documents, lists may consist of 1 or 9 levels, numbered 0 to 8. Has effect only when the Aspose.Words.ListFormat.List property is set to reference a valid list. Aspose.Words.ListFormat.List.
     */
    listLevelNumber: number;
    /**
     * Gets or sets the list id of this paragraph.
     * The list that is being assigned to this property must belong to the current document.The list that is being assigned to this property must not be a list style definition.
     */
    listId: number;
    /**
     * Gets or sets a value indicating whether the paragraph has bulleted or numbered formatting applied to it.
     */
    isListItem: boolean;
    constructor(init?: Partial<ListFormat>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
