import { AttributeInfo } from '../internal/attributeInfo';
import { ModelInterface } from './modelInterface';
export declare const importsMapStyleCopy: {};
/**
 * Represents a single document style to insert.
 */
export declare class StyleCopy 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 copy from it.
     */
    styleName: string;
    constructor(init?: Partial<StyleCopy>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
