/// import express from "express"; interface GoogleAuthConfig { googleAuth?: { clientId?: string; clientSecret?: string; websiteBaseUrl?: string; }; jwtSecret?: string; } declare const init: (app: express.Express, config: GoogleAuthConfig) => void; export default init;