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

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

export { suiAddressTool };
