import { GetAccountAccountInfoResponse, GetAccountAddress } from './types/Address'; import { GetInvoicesResponse, GetInvoices } from './types/Invoice'; import { BillingAccountInfoResponse, BillingAddress } from './types/PaymentMethod'; export declare const mapBillingAccountInfoResponse: ({ billing_city: billingCity, billing_country: billingCountry, billing_state: billingState, billing_street: billingStreet, billing_postal_code: billingPostalCode, }: Pick) => BillingAddress; export declare const mapGetInvoicesResponse: ({ response: { first_name: firstName, last_name: lastName, invoices, payment_status: paymentStatus, }, ...otherValues }: GetInvoicesResponse) => GetInvoices; export declare const mapGetAccountAddress: ({ response: { account_csm_email: accountCsmEmail, account_manager_email: accountManagerEmail, bill_to_contact, billing_city: billingCity, billing_country: billingCountry, billing_state: billingState, billing_street: billingStreet, billing_postal_code: billingPostalCode, dashboard_email: dashboardEmail, is_email_delivery_on: isEmailDeliveryOn, primary_contact, shipping_city: shippingCity, shipping_country: shippingCountry, shipping_postal_code: shippingPostalCode, shipping_street: shippingStreet, shipping_state: shippingState, ...otherAddressValues }, ...otherValues }: GetAccountAccountInfoResponse) => GetAccountAddress; export declare const appendQueryParams: (url: string, params?: Record) => string;