/** * Generates Lorem Ipsum placeholder text. * * @param sentences - Number of sentences to generate (default: 3). Must be between 1 and 50. * @returns A string of Lorem Ipsum text. * * @throws {Error} If sentences is NaN. * @throws {Error} If sentences is not an integer. * @throws {Error} If sentences is less than 1 or greater than 50. * * @example * // Generate default 3 sentences * loremIpsum(); * // 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor...' * * @example * // Generate 1 sentence * loremIpsum(1); // 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.' * * @example * // Generate 5 sentences * loremIpsum(5); // Long Lorem Ipsum text with 5 sentences * * @note Uses Math.random() for non-cryptographic randomness. * @note First sentence always starts with "Lorem ipsum dolor sit amet". * @note Sentences have variable length (5-15 words) for natural appearance. * * @complexity Time: O(n*m), Space: O(n*m) where n is sentences, m is avg words per sentence */ export declare function loremIpsum(sentences?: number): string; //# sourceMappingURL=loremIpsum.d.ts.map