import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { Country } from "./Country"; import { Currency } from "./Currency"; import { MerchantStatus } from "./MerchantStatus"; export declare const Merchant: core.serialization.ObjectSchema; export declare namespace Merchant { interface Raw { id?: string | null; business_name?: (string | null | undefined) | null; country: Country.Raw; language_code?: (string | null | undefined) | null; currency?: Currency.Raw | null; status?: MerchantStatus.Raw | null; main_location_id?: (string | null | undefined) | null; created_at?: string | null; } }