import { Router } from "express"; import type webpush from "web-push"; export interface PushSubscription { endpoint: string; keys: { p256dh: string; auth: string; }; } export interface PushPayload { title: string; body: string; url?: string; [key: string]: unknown; } export interface PushRouterOptions { apiKey?: string; } export declare function createPushRouter(wp: typeof webpush, options?: PushRouterOptions): Router; //# sourceMappingURL=router.d.ts.map