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