import { LoadedConfig } from "./config-loader.mjs"; //#region src/cli/shared/config.d.ts /** * Extracts namespace keys under `config.db` that this app owns * (i.e. not declared with `{ external: true }`). Use this for destructive * operations like `tailordb truncate --all` to avoid touching namespaces * owned by other apps. * @param config - Loaded application configuration. * @returns Owned namespace names in insertion order. */ export declare function extractOwnedNamespaces(config: LoadedConfig): string[]; //#endregion