import type { Declaration, Expression, Statement } from '@babel/types'; type Bindings = Map; export type BindingMethod = () => Bindings; export declare const createBindingsMethod: (nodes: Statement[]) => BindingMethod; export {};