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<AttributeInfo>;
    /**
     * 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<PreferredWidth>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
/**
 * Enums for PreferredWidth
 */
export declare namespace PreferredWidth {
    enum TypeEnum {
        Auto,
        Percent,
        Points
    }
}
