import { KalturaObjectBase } from '../kaltura-object-base';
export declare class KalturaScheduleEventRecurrenceFrequency extends KalturaObjectBase {
    private _value;
    constructor(value?: string | number);
    equals(obj: this): boolean;
    toString(): string;
    static daily: KalturaScheduleEventRecurrenceFrequency;
    static hourly: KalturaScheduleEventRecurrenceFrequency;
    static minutely: KalturaScheduleEventRecurrenceFrequency;
    static monthly: KalturaScheduleEventRecurrenceFrequency;
    static secondly: KalturaScheduleEventRecurrenceFrequency;
    static weekly: KalturaScheduleEventRecurrenceFrequency;
    static yearly: KalturaScheduleEventRecurrenceFrequency;
}
