import { AttributeInfo } from '../internal/attributeInfo'; import { ModelInterface } from './modelInterface'; export declare const importsMapStyleInsert: {}; /** * Represents a single document style to insert. */ export declare class StyleInsert implements ModelInterface { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the case sensitive name of the style to create. */ styleName: string; /** * Gets or sets the StyleType value that specifies the type of the style to create. */ styleType: StyleInsert.StyleTypeEnum; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; } /** * Enums for StyleInsert */ export declare namespace StyleInsert { enum StyleTypeEnum { Paragraph, Character, Table, List } }