/** * HTTP profile routes (v2.18) * * 9 endpoints: list / save / get / delete / enable / disable / connect / disconnect / global-schema */ import type { FastifyInstance } from 'fastify'; import type { ProfileManager } from '../../core/profile-manager.js'; import type { ProfileStore } from '../../core/profile-store.js'; export declare function setupProfileRoutes(fastify: FastifyInstance, pm: ProfileManager, store?: ProfileStore): Promise; //# sourceMappingURL=profiles.d.ts.map