/** * Convert the input value to a correct operation (method) classname. * This converts the input string to camelCase, so the method name follows * the most popular Javascript and Typescript writing style. */ export declare function getOperationName(value: string): string;