import { z } from 'zod'; import type { RuleTemplate } from './types.js'; declare const ConfigSchema: z.ZodObject<{ component_glob: z.ZodString; story_glob_template: z.ZodString; }, "strip", z.ZodTypeAny, { component_glob: string; story_glob_template: string; }, { component_glob: string; story_glob_template: string; }>; type Config = z.infer; export declare const storybookCoverageTemplate: RuleTemplate; export {};