import type { Collection, ObjectMethod, ObjectExpression, FunctionExpression, ArrowFunctionExpression } from 'jscodeshift'; import type { Context } from './wrapAstTransformation'; declare type VueOptionsType = ObjectExpression | ArrowFunctionExpression | FunctionExpression | ObjectMethod; export declare function getVueOptions(context: Context): Collection; export {};