import { Codec } from "mongodb-stitch-core-sdk";
export interface ServiceResponse {
    readonly id: string;
    readonly name: string;
    readonly type: string;
}
export declare class ServiceResponseCodec implements Codec<ServiceResponse> {
    decode(from: any): ServiceResponse;
    encode(from: ServiceResponse): object;
}
