import { KalturaObjectMetadata } from '../kaltura-object-base';
import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request';
export interface ServerNodeGetFullPathActionArgs extends KalturaRequestArgs {
    hostName: string;
    protocol?: string;
    deliveryFormat?: string;
    deliveryType?: string;
}
/**
 * Build request payload for service 'serverNode' action 'getFullPath'.
 *
 * Usage: Get the edge server node full path
 *
 * Server response type:         string
 * Server failure response type: KalturaAPIException
 * @class
 * @extends KalturaRequest
 */
export declare class ServerNodeGetFullPathAction extends KalturaRequest<string> {
    hostName: string;
    protocol: string;
    deliveryFormat: string;
    deliveryType: string;
    constructor(data: ServerNodeGetFullPathActionArgs);
    protected _getMetadata(): KalturaObjectMetadata;
}
