import { AttributeInfo } from '../internal/attributeInfo';
import { ModelInterface } from './modelInterface';
export declare const importsMapFontInfo: {};
/**
 * DTO container with font info.
 */
export declare class FontInfo implements ModelInterface {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    /**
     * Gets or sets the path to the font file if any.
     */
    filePath: string;
    /**
     * Gets or sets the family name of the font.
     */
    fontFamilyName: string;
    /**
     * Gets or sets the full name of the font.
     */
    fullFontName: string;
    /**
     * Gets or sets the version string of the font.
     */
    version: string;
    constructor(init?: Partial<FontInfo>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
