import { Mozaic } from "../..";
import { Configuration, WalletsApi } from "../../api";
import { BaseResource } from "../BaseResource";
import { Wallet } from "./Wallet";
/**
 * @group Resources
 */
export declare class Wallets extends BaseResource {
    private _walletsApi;
    /**
     * @internal
     * You should not call this constructor directly. Instead, use the Mozaic main
     * entry point to get access to the SDK classes.
     * @param configuration
     */
    constructor(mozaic: Mozaic, configuration: Configuration);
    /**
     * Get the underlying API for direct calls to the Mozaic API.
     */
    get WalletsApi(): WalletsApi;
    /**
     * Gets all of the available wallets that you have created with Mozaic's partner wallet providers.
     * @returns
     */
    getWallets(): Promise<Wallet[]>;
}
//# sourceMappingURL=Wallets.d.ts.map