import type { SystemConfig } from '@citrineos/base'; import type { FastifyInstance, FastifyRequest } from 'fastify'; export declare const getHeaderValue: (headers: string[], key: string) => string | undefined; export declare const getAuthorizationTokenFromRequest: (request: FastifyRequest) => string; export declare function initSwagger(systemConfig: SystemConfig, server: FastifyInstance): Promise;