import type { BrandStub, DiscoveredBrand } from "./types.js"; export declare function discoveredToStub(brand: DiscoveredBrand, industry: string, subcategory: string): BrandStub; /** Render a BrandStub as YAML — minimal, readable, no quotes unless needed. */ export declare function stubToYaml(stub: BrandStub): string; /** * Write a stub to the manifest, skipping if a non-discovered file exists. * Returns "created" | "skipped-existing" | "refreshed-discovery". */ export declare function writeStub(stub: BrandStub): "created" | "skipped-existing" | "refreshed-discovery"; /** Write the industry-level _meta.yaml if it doesn't exist. */ export declare function writeIndustryMeta(industry: string, description: string, subcategories: ReadonlyArray<{ slug: string; description: string; }>, priority?: "high" | "medium" | "low"): boolean;