import { z } from "zod"; import { RendexClient } from "../lib/client.js"; export declare const ACCOUNT_NAME = "rendex_account"; export declare const ACCOUNT_DESCRIPTION: string; export declare const AccountInputSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; export type AccountInput = z.infer; export declare function handleAccount(client: RendexClient): Promise<{ content: { type: "text"; text: string; }[]; isError?: undefined; } | { content: { type: "text"; text: string; }[]; isError: boolean; }>; //# sourceMappingURL=account.d.ts.map