import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { Account } from "./Account"; import { DebugModeLog } from "./DebugModeLog"; import { ErrorValidationProblem } from "./ErrorValidationProblem"; import { WarningValidationProblem } from "./WarningValidationProblem"; export declare const AccountResponse: core.serialization.ObjectSchema; export declare namespace AccountResponse { interface Raw { model: Account.Raw; warnings: WarningValidationProblem.Raw[]; errors: ErrorValidationProblem.Raw[]; logs?: DebugModeLog.Raw[] | null; } }