/**
 * Represents the HTML format for generated text.
 */
export declare const FORMAT_HTML = "html";
/**
 * Represents the plain text format for generated text.
 */
export declare const FORMAT_PLAIN = "plain";
/**
 * An array of supported formats for generated text.
 */
export declare const FORMATS: string[];
/**
 * Type representing the supported formats for generated text.
 */
export type LoremFormat = "plain" | "html";
