import { type GroveConfig, type GroveConfigInput } from "./schema.js"; export type { GroveConfig, GroveConfigInput }; /** * Load the Grove project config. The config file is the single source * of truth for blueprint, site metadata, paths, integrations, theme, * and component overrides. * * Default name: `grove.config.ts`. Override with the second arg. */ export declare function loadConfig(cwd?: string, configPath?: string): Promise; /** * Define and validate a Grove config. Used at the bottom of a * `grove.config.ts` file so editors get good type hints. */ export declare function defineConfig(config: GroveConfigInput): GroveConfig; //# sourceMappingURL=config.d.ts.map