import * as bt from '@babel/types'; import { NodePath } from 'ast-types/lib/node-path'; import Documentation, { BlockTag, MethodDescriptor } from '../Documentation'; /** * Extracts methods information from an object-style VueJs component * @param documentation * @param path */ export default function methodHandler(documentation: Documentation, path: NodePath): Promise; export declare function setMethodDescriptor(methodDescriptor: MethodDescriptor, method: NodePath, jsDocTags: BlockTag[]): MethodDescriptor;