import { NodePath } from 'ast-types/lib/node-path'; import Documentation, { ParamTag, ParamType } from '../Documentation'; export interface TypedParamTag extends ParamTag { type: ParamType; } /** * Extract slots information from the render or setup function of an object-style VueJs component * @param documentation * @param path */ export default function slotHandler(documentation: Documentation, path: NodePath): Promise;