import { z } from "zod";
export declare const pathsConfigSchema: z.ZodObject<{
    tools: z.ZodDefault<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    tools: string;
}, {
    tools?: string | undefined;
}>;
export type PathsConfig = z.infer<typeof pathsConfigSchema>;
