/**
 * Registry of per-sentence hook functions keyed by NMEA sentence id.
 *
 * When adding a new NMEA sentence:
 *   1. Create `./<SENTENCE>.ts` exporting a default HookFn.
 *   2. Add the import and the key below.
 *   3. Add tests under `test/<SENTENCE>.ts`.
 */
import type { HookFn } from '../types';
declare const hooks: Record<string, HookFn>;
export default hooks;
//# sourceMappingURL=index.d.ts.map