import type { CustomerAddress } from './CustomerAddress';
/**
 *
 * @export
 * @interface CustomerAddressListResponse
 */
export interface CustomerAddressListResponse {
    /**
     * An array containing the actual response objects.
     * @type {Array<CustomerAddress>}
     * @memberof CustomerAddressListResponse
     */
    readonly data?: Array<CustomerAddress>;
    /**
     * Whether there are more objects available after this set. If false, there are no more objects to retrieve.
     * @type {boolean}
     * @memberof CustomerAddressListResponse
     */
    readonly hasMore?: boolean;
    /**
     * The applied limit on the number of objects returned.
     * @type {number}
     * @memberof CustomerAddressListResponse
     */
    readonly limit?: number;
}
/**
 * Check if a given object implements the CustomerAddressListResponse interface.
 */
export declare function instanceOfCustomerAddressListResponse(value: object): value is CustomerAddressListResponse;
export declare function CustomerAddressListResponseFromJSON(json: any): CustomerAddressListResponse;
export declare function CustomerAddressListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomerAddressListResponse;
export declare function CustomerAddressListResponseToJSON(json: any): CustomerAddressListResponse;
export declare function CustomerAddressListResponseToJSONTyped(value?: Omit<CustomerAddressListResponse, 'data' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;
