import { ParamsMapping } from "../core/builder"; import type Service from "../core/service"; type PathVariablesParamsMapping = Omit & { key?: string; }; export default function PathVariables(keyOrMapping?: string | PathVariablesParamsMapping): (_target: T, propertyKey: string, descriptor: PropertyDescriptor) => void; export {};