export = truncateArgs; /** * @param {any[]} args items to be truncated * @param {number} maxLength maximum length of args including spaces between * @returns {string[]} truncated args */ declare function truncateArgs(args: any[], maxLength: number): string[];