/**
 * Get method parameters names
 * @param target Class
 * @param methodName name of Method
 * @returns Array of method parameters names
 */
export declare function getMethodParameters(target: Function, methodName: string): string[];
