import * as ai from 'ai';
import z from 'zod';

declare const suiWalletBalanceTool: ai.Tool<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, {
    balances: Record<string, string>;
}> & {
    execute: (args: {}, options: ai.ToolExecutionOptions) => PromiseLike<{
        balances: Record<string, string>;
    }>;
};

export { suiWalletBalanceTool };
