import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import * as operations from "../models/operations/index.js"; export declare class Onboarding extends ClientSDK { /** * Create an invitation containing a unique link that allows the recipient to onboard their organization with Moov. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts.write` scope. */ createInvite(request: components.OnboardingInviteRequest, options?: RequestOptions): Promise; /** * List all the onboarding invites created by the caller's account. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts.read` scope. */ listInvites(request: operations.ListOnboardingInvitesRequest, options?: RequestOptions): Promise; /** * Retrieve details about an onboarding invite. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts.read` scope. */ getInvite(request: operations.GetOnboardingInviteRequest, options?: RequestOptions): Promise; /** * Revoke an onboarding invite, rendering the invitation link unusable. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts.write` scope. */ revokeInvite(request: operations.RevokeOnboardingInviteRequest, options?: RequestOptions): Promise; } //# sourceMappingURL=onboarding.d.ts.map