import { MaizzleConfig } from "../types/config.js";
//#region src/composables/defineConfig.d.ts
/**
 * Define Maizzle config.
 *
 * In maizzle.config.ts: typed identity function, returns the config as-is
 * In Vue SFC `<script setup>`: merges with the global config and provides
 * the result to child components via `useConfig()`
 */
declare function defineConfig(data?: Partial<MaizzleConfig>): MaizzleConfig;
//#endregion
export { defineConfig };
//# sourceMappingURL=defineConfig.d.ts.map