import { Bot } from "./_internals.js"; /** This object represents a shipping address. */ export declare class ShippingAddress extends Bot implements IShippingAddress { constructor(data: IShippingAddress, token?: string | Bot); country_code: string; state: string; city: string; street_line1: string; street_line2: string; post_code: string; } /** This object represents a shipping address. */ export interface IShippingAddress { /** ISO 3166-1 alpha-2 country code */ country_code: string; /** State, if applicable */ state: string; /** City */ city: string; /** First line for the address */ street_line1: string; /** Second line for the address */ street_line2: string; /** Address post code */ post_code: string; }