import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { CashAppDetails } from "./CashAppDetails"; import { Error_ } from "./Error_"; import { LightningDetails } from "./LightningDetails"; export declare const DigitalWalletDetails: core.serialization.ObjectSchema; export declare namespace DigitalWalletDetails { interface Raw { status?: (string | null | undefined) | null; brand?: (string | null | undefined) | null; cash_app_details?: CashAppDetails.Raw | null; lightning_details?: LightningDetails.Raw | null; errors?: Error_.Raw[] | null; } }