declare function createClient(): Promise; export declare function makeClient(options: ClientOptions, interactive?: boolean, basePath?: string): Promise; export { createClient }; interface ClientOptions { title: string; description: string; /** The geoprocessing function to run for this Client */ functionName?: string; }