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<AttributeInfo>;
    /**
     * 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<StyleInsert>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
/**
 * Enums for StyleInsert
 */
export declare namespace StyleInsert {
    enum StyleTypeEnum {
        Paragraph,
        Character,
        Table,
        List
    }
}
