import { KalturaObjectBase } from '../kaltura-object-base';
export declare class KalturaEntryType extends KalturaObjectBase {
    private _value;
    constructor(value?: string | number);
    equals(obj: this): boolean;
    toString(): string;
    static automatic: KalturaEntryType;
    static data: KalturaEntryType;
    static document: KalturaEntryType;
    static externalMedia: KalturaEntryType;
    static liveChannel: KalturaEntryType;
    static liveStream: KalturaEntryType;
    static mediaClip: KalturaEntryType;
    static mix: KalturaEntryType;
    static playlist: KalturaEntryType;
}
