import { Tool } from '@modelcontextprotocol/sdk/types.js'; export declare const listUsersTool: Tool; export declare function listUsers(input: unknown): Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; export declare const getCurrentUserTool: Tool; export declare function getCurrentUser(): Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; export declare const getUserTool: Tool; export declare function getUser(input: unknown): Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; //# sourceMappingURL=users.d.ts.map