/** * shortens the provided string by the specified amount * @example * shortenLongText(5, 'Lorem ipsum dolor') * // returns 'Lorem...' */ export default function shortenLongText(limit: number, text: string): string; //# sourceMappingURL=shortenLongText.d.ts.map