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