import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as operations from "../models/operations/index.js"; export declare class Sweeps extends ClientSDK { /** * Create a sweep config for a wallet. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/wallets.write` scope. */ createConfig(request: operations.CreateSweepConfigRequest, options?: RequestOptions): Promise; /** * List sweep configs associated with an account. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/wallets.read` scope. */ listConfigs(request: operations.ListSweepConfigsRequest, options?: RequestOptions): Promise; /** * Get a sweep config associated with a wallet. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/wallets.read` scope. */ getConfig(request: operations.GetSweepConfigRequest, options?: RequestOptions): Promise; /** * Update settings on a sweep config. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/wallets.write` scope. */ updateConfig(request: operations.UpdateSweepConfigRequest, options?: RequestOptions): Promise; /** * List sweeps associated with a wallet. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/wallets.read` scope. */ list(request: operations.ListSweepsRequest, options?: RequestOptions): Promise; /** * Get details on a specific sweep. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/wallets.read` scope. */ get(request: operations.GetSweepRequest, options?: RequestOptions): Promise; } //# sourceMappingURL=sweeps.d.ts.map