import type { PlatformAdapter } from '../platform/index.js'; declare function buildStartupMessage({ machine, restartReason }: { machine?: string; restartReason?: string; }): string; declare function sendStartupDmIfConfigured(adapter: PlatformAdapter, { machine, restartReason }?: { machine?: string; restartReason?: string; }): Promise; export { buildStartupMessage, sendStartupDmIfConfigured };