import { CKDBSessionUser } from "./CKDBSessionUserCodec"; /** * An object that contains the result of looking up the current user. * * API schema: CKDBSessionUserResponse * API version: 1.3.2 */ export interface CKDBSessionUserResponse { /** */ user: CKDBSessionUser; } /** * An object the provides the functions that * transform {@link CKDBSessionUserResponse } to and from JSON. */ export declare const jsonCodecCKDBSessionUserResponseOwnProperties: { /** * Get an encoder that transforms {@link CKDBSessionUserResponse }'s * own properties to JSON. */ readonly getEncoder: () => { readonly user: (val: CKDBSessionUser) => import("@apple/cktool.core").ValidatedNEA; }; /** * Get a decoder that transforms {@link CKDBSessionUserResponse }'s * own properties from JSON. */ readonly getDecoder: () => { readonly user: (val: unknown) => import("@apple/cktool.core").ValidatedNEA; }; };