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 RetrieveTokenStatusResponse: core.serialization.ObjectSchema; export declare namespace RetrieveTokenStatusResponse { interface Raw { scopes?: string[] | null; expires_at?: string | null; client_id?: string | null; merchant_id?: string | null; errors?: Error_.Raw[] | null; } }