import type Documentation from '../Documentation';
import type { Importer } from '../parse';
import type { NodePath } from 'ast-types/lib/node-path';
/**
 * Extract all flow types for the methods of a react component. Doesn't
 * return any react specific lifecycle methods.
 */
export default function componentMethodsHandler(documentation: Documentation, path: NodePath, importer: Importer): void;
