import { z } from 'zod';
declare const inputSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
export declare const getUsageTool: {
    name: string;
    description: string;
    inputSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
    handler: (args: z.infer<typeof inputSchema>) => Promise<{
        content: {
            type: string;
            text: string;
        }[];
    }>;
};
export {};
//# sourceMappingURL=get-usage.d.ts.map