import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { Error_ } from "./Error_"; export declare const ObtainTokenResponse: core.serialization.ObjectSchema; export declare namespace ObtainTokenResponse { interface Raw { access_token?: string | null; token_type?: string | null; expires_at?: string | null; merchant_id?: string | null; subscription_id?: string | null; plan_id?: string | null; id_token?: string | null; refresh_token?: string | null; short_lived?: boolean | null; errors?: Error_.Raw[] | null; refresh_token_expires_at?: string | null; } }