import { Connection, ConnectionConfig } from 'jsforce';
/**
 * ConnectToSalesforce creates a standard JSForce Connection object and preconfigures it
 * to allow it to communicate with the Proxy and send Requests in the correct format.
 * @param params Connection Options
 * @returns Salesforce Connection
 */
export declare function ConnectToSalesforce(params: ConnectionConfig): Connection;
