/**
 * Represents the HTML format for generated text.
 */
export const FORMAT_HTML = "html";

/**
 * Represents the plain text format for generated text.
 */
export const FORMAT_PLAIN = "plain";

/**
 * An array of supported formats for generated text.
 */
export const FORMATS = [FORMAT_HTML, FORMAT_PLAIN];

/**
 * Type representing the supported formats for generated text.
 */
export type LoremFormat = "plain" | "html";
