/**
 * Enumerates all valid CLI format flag values
 *
 * @see {@link Format}
 */
export declare const validFormats: readonly ["json", "about-json", "text", "markdown"];
/**
 * Type of CLI flag that controls the output format
 */
export type Format = (typeof validFormats)[number];
