import { KalturaObjectMetadata } from '../kaltura-object-base';
import { KalturaLiveEntry } from './KalturaLiveEntry';
import { KalturaEntryServerNodeType } from './KalturaEntryServerNodeType';
import { KalturaEntryServerNodeStatus } from './KalturaEntryServerNodeStatus';
import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request';
export interface LiveChannelRegisterMediaServerActionArgs extends KalturaRequestArgs {
    entryId: string;
    hostname: string;
    mediaServerIndex: KalturaEntryServerNodeType;
    applicationName?: string;
    liveEntryStatus?: KalturaEntryServerNodeStatus;
    shouldCreateRecordedEntry?: boolean;
}
/**
 * Build request payload for service 'liveChannel' action 'registerMediaServer'.
 *
 * Usage: Register media server to live entry
 *
 * Server response type:         KalturaLiveEntry
 * Server failure response type: KalturaAPIException
 * @class
 * @extends KalturaRequest
 */
export declare class LiveChannelRegisterMediaServerAction extends KalturaRequest<KalturaLiveEntry> {
    entryId: string;
    hostname: string;
    mediaServerIndex: KalturaEntryServerNodeType;
    applicationName: string;
    liveEntryStatus: KalturaEntryServerNodeStatus;
    shouldCreateRecordedEntry: boolean;
    constructor(data: LiveChannelRegisterMediaServerActionArgs);
    protected _getMetadata(): KalturaObjectMetadata;
}
