import { ApiStitchUserIdentity, Decoder } from "mongodb-stitch-core-sdk";
export interface StitchAdminUserProfile {
    readonly userType: string;
    readonly identities: ApiStitchUserIdentity[];
    readonly data: object;
    readonly roles: StitchAdminRole[];
}
export declare class StitchAdminUserProfileCodec implements Decoder<StitchAdminUserProfile> {
    decode(from: any): StitchAdminUserProfile;
}
export interface StitchAdminRole {
    readonly name: string;
    readonly groupId: string;
}
export declare class StitchAdminRoleCodec implements Decoder<StitchAdminRole> {
    decode(from: any): StitchAdminRole;
}
