﻿/**
* DevExpress HTML/JS Reporting (designer\controls\properties\formattingrules.d.ts)
* Version:  20.2.13
* Build date: Apr 10, 2023
* Copyright (c) 2012 - 2023 Developer Express Inc. ALL RIGHTS RESERVED
* License: https://www.devexpress.com/Support/EULAs/universal.xml
*/
import { ReportViewModel } from '../xrReport';
import { ObjectStorageItem } from '../../dataObjects/objectStorageItem';
import { ISerializationInfoArray, Disposable, IModelSerializer } from '@devexpress/analytics-core/analytics-utils';
import * as ko from 'knockout';
export declare class FormattingRule extends Disposable {
    static createNew(report?: any): FormattingRule;
    getInfo(): ISerializationInfoArray;
    constructor(model: any, parent: ReportViewModel, serializer?: IModelSerializer);
    getPath(propertyName: any): string;
    className: () => string;
    displayType(): any;
    controlType: string;
    selected: ko.Observable<boolean> | ko.Computed<boolean>;
    name: ko.Observable<string> | ko.Computed<string>;
    parent: ReportViewModel;
    dataSource: ko.Observable<ObjectStorageItem> | ko.Computed<ObjectStorageItem>;
    dataMember: ko.Observable<string> | ko.Computed<string>;
    condition: ko.Observable<string> | ko.Computed<string>;
}
export declare class FormattingRuleLink {
    static createNew(rule: FormattingRule): FormattingRuleLink;
    getInfo(): ISerializationInfoArray;
    constructor(model: any, serializer?: IModelSerializer);
    value: ko.Observable<FormattingRule> | ko.Computed<FormattingRule>;
}
