import { CCliColor } from './c-cli-color'; /** Type of the object injected into a command's description when it's a * function */ export declare type RenderCCliDescriptionOptions = { color: CCliColor; }; /** Type of a command description when it's a function */ export declare type CCliDescriptionFunction = (input: { color: CCliColor; }) => string; export declare type CCliDescription = undefined | string | CCliDescriptionFunction; /** Generate a string text description from a description string or function */ export declare function renderCCliDescription(description: CCliDescription, options: RenderCCliDescriptionOptions): string; //# sourceMappingURL=c-cli-description.d.ts.map