/** * Normalizes a string for use as an agent tool name. * Format: {prefix_up_to_53_chars}_{6char_hash}_mcp (≤ 64 chars total) */ declare function createToolName(name: string): string; /** * Strips the @scope/piece- prefix from pieceName (e.g. @activepieces/piece-slack → slack) * and delegates to createToolName. */ declare function createPieceToolName(pieceName: string, actionName: string): string; export declare const mcpToolNameUtils: { createToolName: typeof createToolName; createPieceToolName: typeof createPieceToolName; }; export {}; //# sourceMappingURL=mcp-tool-name-util.d.ts.map