type KeyValueType = { [x: string]: any; }; export declare const allowedParams: string[]; export declare const getKey: (key: string) => string; export declare function getParams(obj?: any): { params: any; passedParams: KeyValueType; rest: KeyValueType; }; export {};