import { ListResult } from '../list_result'; import { RequestWrapper } from "../request_wrapper"; import { Model } from "./model"; export declare class CustomerEntitlement extends Model { customer_id: string; subscription_id?: string; feature_id?: string; value?: string; name?: string; is_enabled: boolean; static entitlements_for_customer(customer_id: string, params?: _customer_entitlement.customer_entitlement_entitlements_for_customer_params): RequestWrapper; } export declare namespace _customer_entitlement { interface customer_entitlement_entitlements_for_customer_params { limit?: number; offset?: string; consolidate_entitlements?: boolean; } }