/** * DevExpress Analytics (property-grid\widgets\fonteditor\_model.d.ts) * Version: 25.2.7 * Build date: May 5, 2026 * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED * License: https://www.devexpress.com/Support/EULAs/universal.xml */ import * as ko from 'knockout'; import { Disposable } from '../../../serializer/disposable'; export declare const availableUnits: { value: string; displayValue: string; localizationId: string; }[]; export declare class FontModel extends Disposable { private _toString; updateModel(value: string): void; updateValue(value: any): void; constructor(value: ko.Observable | ko.Computed); family: ko.Observable; unit: ko.Observable; isUpdateModel: boolean; size: ko.Observable; modificators: { bold: ko.Observable; italic: ko.Observable; strikeout: ko.Observable; underline: ko.Observable; }; }