import { AttributeInfo } from '../internal/attributeInfo'; import { ModelInterface } from './modelInterface'; export declare const importsMapPreferredWidth: {}; /** * DTO container with a preferred width value. */ export declare class PreferredWidth implements ModelInterface { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the unit of measure used for this preferred width value. */ type: PreferredWidth.TypeEnum; /** * Gets or sets the preferred width value. The unit of measure is specified in the Type property. */ value: number; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; } /** * Enums for PreferredWidth */ export declare namespace PreferredWidth { enum TypeEnum { Auto, Percent, Points } }