import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { ViewerTeam } from "./ViewerTeam"; import { ViewerUser } from "./ViewerUser"; export declare const Viewer: core.serialization.ObjectSchema; export declare namespace Viewer { interface Raw { id?: string | null; remote_id?: string | null; created_at?: string | null; modified_at?: string | null; team?: ViewerTeam.Raw | null; user?: ViewerUser.Raw | null; } }