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