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