import { ArkosConfig } from "../exports"; /** * Defines and validates the Arkos configuration, filling in defaults where needed. * Use this in your `arkos.config.ts` to get full type safety and autocompletion. * * @example * ```ts * // arkos.config.ts * import { defineConfig } from "arkos/config"; * * export default defineConfig({ * globalPrefix: "/api", * }); * ``` * * @see {@link https://www.arkosjs.com/docs/reference/define-config} */ export declare function defineConfig(config: ArkosConfig): Partial; export type UserArkosConfig = ReturnType & { __loader: "defineConfig"; };