export type SubParamType = 'string' | 'number'; export interface ISubParamProps { name?: string; type?: SubParamType; parser?: (value: string) => T; description?: string; } export declare const getParamName: (props: ISubParamProps | undefined, fallback: string) => string; export declare const getSwaggerParamType: (props?: ISubParamProps) => StringConstructor | NumberConstructor; export declare const parseSubParam: (value: string, props: ISubParamProps | undefined) => T; //# sourceMappingURL=param.util.d.ts.map