export interface PathParamOptions { name: string; transform?: ((...allParamValues: any[]) => any) | null; validators?: PropertyDecorator[]; } export declare function pathParam(options: PathParamOptions): any;