import type { Config, AstType } from '../types'; export default class Function implements AstType { readonly $$mdtype = "Function"; name: string; parameters: Record; constructor(name: string, parameters: Record); resolve(config?: Config): any; } //# sourceMappingURL=function.d.ts.map