import { KalturaObjectMetadata } from '../kaltura-object-base';
import { KalturaReachProfile } from './KalturaReachProfile';
import { KalturaListResponse, KalturaListResponseArgs } from './KalturaListResponse';
export interface KalturaReachProfileListResponseArgs extends KalturaListResponseArgs {
}
export declare class KalturaReachProfileListResponse extends KalturaListResponse {
    readonly objects: KalturaReachProfile[];
    constructor(data?: KalturaReachProfileListResponseArgs);
    protected _getMetadata(): KalturaObjectMetadata;
}
