/** * @traqr/core — MOTD Generator * * Generates ~/.traqr/motd.sh — a shell script that displays a * project-aware welcome screen when the terminal opens. * * Reads from the org config (~/.traqr/config.json) and each * registered project's .traqr/config.json to build a bash function * with dynamic time/date and ANSI gradient colors. */ /** * Generate the MOTD shell script content. * Returns the full shell script as a string. */ export declare function generateMotdContent(): string; /** * Generate and write the MOTD to ~/.traqr/motd.sh. * Returns the file path written. */ export declare function generateMotd(): string; //# sourceMappingURL=motd-generator.d.ts.map