import { KalturaObjectMetadata } from '../kaltura-object-base';
import { KalturaEntryServerNode, KalturaEntryServerNodeArgs } from './KalturaEntryServerNode';
export interface KalturaSipEntryServerNodeArgs extends KalturaEntryServerNodeArgs {
}
export declare class KalturaSipEntryServerNode extends KalturaEntryServerNode {
    readonly sipRoomId: string;
    readonly sipPrimaryAdpId: string;
    readonly sipSecondaryAdpId: string;
    constructor(data?: KalturaSipEntryServerNodeArgs);
    protected _getMetadata(): KalturaObjectMetadata;
}
