/** * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ import { AfterContentInit, ChangeDetectorRef, OnChanges, OnDestroy, QueryList, TemplateRef } from '@angular/core'; import { VtsConfigKey, VtsConfigService } from '@ui-vts-kit/ng-vts/core/config'; import { BooleanInput, NumberInput, VtsSafeAny } from '@ui-vts-kit/ng-vts/core/types'; import { VtsSpaceAlign, VtsSpaceDirection, VtsSpaceJustify } from './types'; import * as i0 from "@angular/core"; export declare class VtsSpaceComponent implements OnChanges, OnDestroy, AfterContentInit { vtsConfigService: VtsConfigService; private cdr; static ngAcceptInputType_vtsWrap: BooleanInput; static ngAcceptInputType_vtsPreset: NumberInput; static ngAcceptInputType_vtsSize: NumberInput; readonly _vtsModuleName: VtsConfigKey; vtsDirection: VtsSpaceDirection; vtsAlign?: VtsSpaceAlign; vtsJustify?: VtsSpaceJustify; vtsSplit: TemplateRef<{ $implicit: number; }> | null; vtsWrap: boolean; vtsSize?: number; vtsPreset?: number; items: QueryList>; mergedAlign?: VtsSpaceAlign; spaceSize: number; private destroy$; constructor(vtsConfigService: VtsConfigService, cdr: ChangeDetectorRef); private updateSpaceItems; ngOnChanges(): void; ngOnDestroy(): void; ngAfterContentInit(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }