import { Decoder } from "mongodb-stitch-core-sdk";
export default interface StitchServiceClient {
    callFunction<T>(name: string, args: any[], codec?: Decoder<T>): Promise<T>;
}
