export type CardKind = 'plan' | 'status' | 'checkpoint' | 'diagnosis' | 'user'; export interface CardSpec { kind: CardKind; title?: string; body: string | string[]; leftPad?: number; } export declare function card(spec: CardSpec): string;