import { z } from "zod"; export declare const DEFAULT_DENIED_PATHS: readonly string[]; export declare const DEFAULT_DENIED_COMMANDS: readonly string[]; export declare const DeniedPathsSchema: z.ZodObject<{ deniedPaths: z.ZodDefault>; }, "strict", z.ZodTypeAny, { deniedPaths: string[]; }, { deniedPaths?: string[] | undefined; }>; export type DeniedPathsConfig = z.infer; export declare const DeniedCommandsSchema: z.ZodObject<{ deniedCommands: z.ZodDefault>; }, "strict", z.ZodTypeAny, { deniedCommands: string[]; }, { deniedCommands?: string[] | undefined; }>; export type DeniedCommandsConfig = z.infer; //# sourceMappingURL=denied.d.ts.map