import { KalturaObjectMetadata } from '../kaltura-object-base';
import { KalturaCortexApiDistributionCaptionAction } from './KalturaCortexApiDistributionCaptionAction';
import { KalturaObjectBase, KalturaObjectBaseArgs } from '../kaltura-object-base';
export interface KalturaCortexApiCaptionDistributionInfoArgs extends KalturaObjectBaseArgs {
    language?: string;
    label?: string;
    filePath?: string;
    remoteId?: string;
    action?: KalturaCortexApiDistributionCaptionAction;
    version?: string;
    assetId?: string;
    fileExt?: string;
}
export declare class KalturaCortexApiCaptionDistributionInfo extends KalturaObjectBase {
    language: string;
    label: string;
    filePath: string;
    remoteId: string;
    action: KalturaCortexApiDistributionCaptionAction;
    version: string;
    assetId: string;
    fileExt: string;
    constructor(data?: KalturaCortexApiCaptionDistributionInfoArgs);
    protected _getMetadata(): KalturaObjectMetadata;
}
