/** * The CLI's visual identity โ€” the banner and the command headers. * * The banner only appears when there is height to spare: in short terminals it * gives way to the content, which is what the user needs to see to answer. */ import { type Node } from './engine/index.js'; /** The brand name as it is written โ€” the slash is part of it. */ export declare const BRAND = "zard/ui"; export declare const ZARDUI_BANNER: string[]; export declare function brandBanner(rows: number): Node[]; /** A command's compact header: `โ—‡ zard/ui ยท initialize`. */ export declare function commandHeader(command: string, description?: string): Node; //# sourceMappingURL=brand.d.ts.map