/** * Copyright 2025 © BeeAI a Series of LF Projects, LLC * SPDX-License-Identifier: Apache-2.0 */ declare function assertValidNamespace(path: string[]): void; declare function assertValidName(name: string): void; declare function createFullPath(path: string[], name: string): string; declare function isPath(name: string): boolean; export { assertValidName, assertValidNamespace, createFullPath, isPath };