/*!
 * devextreme-angular
 * Version: 22.1.14
 * Build date: Mon Apr 29 2024
 *
 * Copyright (c) 2012 - 2024 Developer Express Inc. ALL RIGHTS RESERVED
 *
 * This software may be modified and distributed under the terms
 * of the MIT license. See the LICENSE file in the root of the project for details.
 *
 * https://github.com/DevExpress/devextreme-angular
 */
import { NestedOption } from 'devextreme-angular/core';
import DevExpress from 'devextreme/bundles/dx.all';
import Store from 'devextreme/data/abstract_store';
import DataSource, { Options as DataSourceOptions } from 'devextreme/data/data_source';
import { dxBoxOptions } from 'devextreme/ui/box';
import * as i0 from "@angular/core";
export declare abstract class DxoBoxOptions extends NestedOption {
    get align(): string;
    set align(value: string);
    get crossAlign(): string;
    set crossAlign(value: string);
    get dataSource(): DataSource | DataSourceOptions | Store | null | string | Array<string | DevExpress.ui.dxBoxItem | any>;
    set dataSource(value: DataSource | DataSourceOptions | Store | null | string | Array<string | DevExpress.ui.dxBoxItem | any>);
    get direction(): string;
    set direction(value: string);
    get disabled(): boolean;
    set disabled(value: boolean);
    get elementAttr(): any;
    set elementAttr(value: any);
    get height(): number | Function | string | undefined;
    set height(value: number | Function | string | undefined);
    get hoverStateEnabled(): boolean;
    set hoverStateEnabled(value: boolean);
    get itemHoldTimeout(): number;
    set itemHoldTimeout(value: number);
    get items(): Array<string | any | {
        baseSize?: number | string;
        box?: dxBoxOptions | undefined;
        disabled?: boolean;
        html?: string;
        ratio?: number;
        shrink?: number;
        template?: any;
        text?: string;
        visible?: boolean;
    }>;
    set items(value: Array<string | any | {
        baseSize?: number | string;
        box?: dxBoxOptions | undefined;
        disabled?: boolean;
        html?: string;
        ratio?: number;
        shrink?: number;
        template?: any;
        text?: string;
        visible?: boolean;
    }>);
    get itemTemplate(): any;
    set itemTemplate(value: any);
    get onContentReady(): Function;
    set onContentReady(value: Function);
    get onDisposing(): Function;
    set onDisposing(value: Function);
    get onInitialized(): Function;
    set onInitialized(value: Function);
    get onItemClick(): Function;
    set onItemClick(value: Function);
    get onItemContextMenu(): Function;
    set onItemContextMenu(value: Function);
    get onItemHold(): Function;
    set onItemHold(value: Function);
    get onItemRendered(): Function;
    set onItemRendered(value: Function);
    get onOptionChanged(): Function;
    set onOptionChanged(value: Function);
    get rtlEnabled(): boolean;
    set rtlEnabled(value: boolean);
    get visible(): boolean;
    set visible(value: boolean);
    get width(): number | Function | string | undefined;
    set width(value: number | Function | string | undefined);
    static ɵfac: i0.ɵɵFactoryDeclaration<DxoBoxOptions, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<DxoBoxOptions, "ng-component", never, {}, {}, never, never>;
}
