/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { ElementRef, OnChanges, OnDestroy, Renderer2, SimpleChanges } from '@angular/core'; import { ResponsiveFormBreakPoint } from '../common/models/responsive-breakpoints'; import { FormService } from '../common/formservice.service'; import * as i0 from "@angular/core"; /** * Represents the Kendo UI Form Separator component for Angular. */ export declare class FormSeparatorComponent implements OnChanges, OnDestroy { private renderer; private hostElement; private formService; hostClass: boolean; /** * Defines the colspan for the separator element related to the parent Form component columns. * Can be a number or an array of responsive breakpoints. */ colSpan: number | ResponsiveFormBreakPoint[]; private _formWidth; private _colSpanClass; private _previousColSpan; private subscriptions; constructor(renderer: Renderer2, hostElement: ElementRef, formService: FormService); ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; private updateColSpanClass; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }