/** * Generate a new random 256-bit token, persist it to ~/.md2pdf/daemon.token * with mode 0600 and return it. */ export declare function generateToken(): string; /** * Read the persisted token. Returns null if the file does not exist or cannot * be read. */ export declare function readToken(): string | null;