import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import { CustomerBenefitGrant } from "../models/components/customerbenefitgrant.js"; import { CustomerPortalBenefitGrantsGetRequest, CustomerPortalBenefitGrantsGetSecurity } from "../models/operations/customerportalbenefitgrantsget.js"; import { CustomerPortalBenefitGrantsListRequest, CustomerPortalBenefitGrantsListResponse, CustomerPortalBenefitGrantsListSecurity } from "../models/operations/customerportalbenefitgrantslist.js"; import { CustomerPortalBenefitGrantsUpdateRequest, CustomerPortalBenefitGrantsUpdateSecurity } from "../models/operations/customerportalbenefitgrantsupdate.js"; import { PageIterator } from "../types/operations.js"; export declare class PolarBenefitGrants extends ClientSDK { /** * List Benefit Grants * * @remarks * List benefits grants of the authenticated customer. * * **Scopes**: `customer_portal:read` `customer_portal:write` */ list(security: CustomerPortalBenefitGrantsListSecurity, request: CustomerPortalBenefitGrantsListRequest, options?: RequestOptions): Promise>; /** * Get Benefit Grant * * @remarks * Get a benefit grant by ID for the authenticated customer. * * **Scopes**: `customer_portal:read` `customer_portal:write` */ get(security: CustomerPortalBenefitGrantsGetSecurity, request: CustomerPortalBenefitGrantsGetRequest, options?: RequestOptions): Promise; /** * Update Benefit Grant * * @remarks * Update a benefit grant for the authenticated customer. * * **Scopes**: `customer_portal:write` */ update(security: CustomerPortalBenefitGrantsUpdateSecurity, request: CustomerPortalBenefitGrantsUpdateRequest, options?: RequestOptions): Promise; } //# sourceMappingURL=polarbenefitgrants.d.ts.map