import { z } from "zod"; declare const BrandConfigSchema: z.ZodObject<{ schema_version: z.ZodLiteral<1>; name: z.ZodString; description: z.ZodString; palette_hint: z.ZodOptional; languages: z.ZodDefault>; colors: z.ZodOptional; accent: z.ZodOptional; }, z.core.$strip>>; fonts_hint: z.ZodOptional; }, z.core.$strip>; export type BrandConfig = z.infer; interface BrandArgs { cwd: string; refresh: boolean; dryRun: boolean; briefInline: string | undefined; model: string; } export declare function loadBrandConfig(repoRoot: string): BrandConfig | null; export declare function buildProjectContext(repoRoot: string, args: BrandArgs): string; export declare function brand(argv: string[], _cliVersion: string): Promise; export {}; //# sourceMappingURL=index.d.ts.map