/** * Truncates a given string to a specified maximum length, adding ellipsis in the middle if necessary. * * @param string - The string to be truncated. * @param maxLength - The maximum length of the truncated string, including the ellipsis. Defaults to 36. * @returns The truncated string with ellipsis in the middle if it exceeds the maximum length. */ export declare const truncate: (string: string, maxLength?: number) => string; //# sourceMappingURL=truncate.d.ts.map