import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { Address } from "./Address"; import { CardBrand } from "./CardBrand"; import { CardCoBrand } from "./CardCoBrand"; import { CardIssuerAlert } from "./CardIssuerAlert"; import { CardPrepaidType } from "./CardPrepaidType"; import { CardType } from "./CardType"; export declare const Card: core.serialization.ObjectSchema; export declare namespace Card { interface Raw { id?: string | null; card_brand?: CardBrand.Raw | null; last_4?: string | null; exp_month?: ((bigint | number) | null | undefined) | null; exp_year?: ((bigint | number) | null | undefined) | null; cardholder_name?: (string | null | undefined) | null; billing_address?: Address.Raw | null; fingerprint?: string | null; customer_id?: (string | null | undefined) | null; merchant_id?: string | null; reference_id?: (string | null | undefined) | null; enabled?: boolean | null; card_type?: CardType.Raw | null; prepaid_type?: CardPrepaidType.Raw | null; bin?: string | null; created_at?: string | null; disabled_at?: string | null; version?: (bigint | number) | null; card_co_brand?: CardCoBrand.Raw | null; issuer_alert?: CardIssuerAlert.Raw | null; issuer_alert_at?: string | null; hsa_fsa?: boolean | null; } }