/** SDK-owned platform module. This implementation is maintained in goodvibes-sdk. */ /** * Resolves a raw command token to its canonical bare command name. * * Processing order: * 1. Strip quotes. * 2. Strip leading environment variable assignments. * 3. Extract the basename (strip directory path). * 4. Lowercase the result. * * @param raw - The raw command token value. * @returns The canonical command name (e.g. "rm", "git", "npm"). */ export declare function canonicalize(raw: string): string; //# sourceMappingURL=canonicalizer.d.ts.map