import { z } from 'zod'; import type { RuleTemplate } from './types.js'; declare const ConfigSchema: z.ZodObject<{ target_components: z.ZodArray; allowed_sources: z.ZodDefault>; forbidden_sources: z.ZodDefault>; }, "strip", z.ZodTypeAny, { target_components: string[]; allowed_sources: string[]; forbidden_sources: string[]; }, { target_components: string[]; allowed_sources?: string[] | undefined; forbidden_sources?: string[] | undefined; }>; type Config = z.infer; export declare const importSourceRestrictionTemplate: RuleTemplate; export {};