/** * Close Browser Tool * * Closes the browser instance and cleans up resources. */ import { z } from 'zod'; export declare const CloseBrowserSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; export declare function closeBrowser(_args: z.infer): Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; //# sourceMappingURL=closeBrowser.d.ts.map