/**
 * Represents the unit type for words.
 */
export declare const UNIT_WORDS = "words";
/**
 * Represents the unit type for sentences.
 */
export declare const UNIT_SENTENCES = "sentences";
/**
 * Represents the unit type for paragraphs.
 */
export declare const UNIT_PARAGRAPHS = "paragraphs";
/**
 * An array of supported unit types for generating text.
 */
export declare const UNITS: string[];
/**
 * Type representing the supported unit types for generating text.
 */
export type LoremUnit = "words" | "sentences" | "paragraphs";
