///
import MergeParameters from './merge-parameters';
import Client from './client';
import { StorageOptions } from './parameters';
export default class MergeProcess extends MergeParameters {
client: Client;
constructor(client: Client);
/**
* Submit the conversion to the API and return the result.
*/
getResult(): Promise;
/**
* Submit the conversion to the API and return the result as a Blob.
*/
getBufferResult(): Promise;
/**
* Submit the conversion to the API and return the conversion result.
* The API returns an error if the account associated with the API
* key doesn't have access to the CDN.
*/
getCDNResult(): Promise;
/**
* Submit the conversion to the API and return the conversion result.
* The generated PDF will be uploaded directly to the user's configured storage disk.
*/
getStorageResult(options?: StorageOptions): Promise;
}