import { CoreStitchServiceClientImpl, Decoder, StitchAuthRequestClient, StitchServiceRoutes } from "mongodb-stitch-core-sdk";
import StitchServiceClient from "./StitchServiceClient";
export default class StitchServiceImpl extends CoreStitchServiceClientImpl implements StitchServiceClient {
    constructor(requestClient: StitchAuthRequestClient, routes: StitchServiceRoutes, name: string);
    callFunction<T>(name: string, args: any[], codec?: Decoder<T>): Promise<T>;
}
