import type Schema from '../schema/Schema.js';
import type Service from '../service/Service.js';
export default function getService(schemas?: Map<string, Schema>, services?: Record<string, Service>): (types?: string | string[], serviceId?: string) => Service | undefined;