const handler = (event) => { console.log(event.id.toUpperCase()); }; declare function register( callback: (event: { id: string }) => void, ): void; register(handler);