import { KalturaObjectMetadata } from '../kaltura-object-base';
import { KalturaKeyValue } from './KalturaKeyValue';
import { KalturaEventNotificationScope, KalturaEventNotificationScopeArgs } from './KalturaEventNotificationScope';
export interface KalturaEventNotificationDispatchScopeArgs extends KalturaEventNotificationScopeArgs {
    dynamicValues?: KalturaKeyValue[];
}
export declare class KalturaEventNotificationDispatchScope extends KalturaEventNotificationScope {
    dynamicValues: KalturaKeyValue[];
    constructor(data?: KalturaEventNotificationDispatchScopeArgs);
    protected _getMetadata(): KalturaObjectMetadata;
}
