import { type NameCase } from '@frontmcp/utils'; /** * Normalize a single segment (name part) to MCP-safe characters. */ export declare function normalizeSegment(raw: string, kind: NameCase): string; /** * Normalize a provider ID to MCP-safe characters. */ export declare function normalizeProviderId(raw: string | undefined, kind: NameCase): string | undefined; /** * Normalize an owner path (app:id/plugin:id) to the specified naming case. */ export declare function normalizeOwnerPath(ownerKey: string, kind: NameCase): string; //# sourceMappingURL=naming.utils.d.ts.map