/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { NumericTextBoxOptions } from './../../types/numeric-options.interface'; import { OnDestroy } from '@angular/core'; import { RecurrenceService } from './recurrence.service'; import { LocalizationService } from '@progress/kendo-angular-l10n'; import * as i0 from "@angular/core"; /** * @hidden */ export declare class RecurrenceIntervalEditorComponent implements OnDestroy { private recurrence; private localization?; cssClass: boolean; set userNumericOptions(options: NumericTextBoxOptions); intervalValue: number; numericOptions: NumericTextBoxOptions; private frequencyChangeSubscription; constructor(recurrence: RecurrenceService, localization?: LocalizationService); ngOnDestroy(): void; get currentFreq(): string; onIntervalChange(newInterval: number): void; onIntervalBlur(): void; textForRepeatEvery(): string; textForFrequency(): string; textFor(key: string): string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }