export interface ExpressSwaggerCustomOptions { explorer?: boolean; swaggerOptions?: Record; customCss?: string; customCssUrl?: string; customJs?: string; customfavIcon?: string; swaggerUrl?: string; customSiteTitle?: string; validatorUrl?: string; url?: string; urls?: Record<'url' | 'name', string>[]; } export interface FastifySwaggerCustomOptions { uiConfig?: Record; } export declare type SwaggerCustomOptions = FastifySwaggerCustomOptions | ExpressSwaggerCustomOptions;