import type { Config, AstType } from '../types'; export default class Variable implements AstType { readonly $$mdtype = "Variable"; path: (string | number)[]; constructor(path?: (string | number)[]); resolve({ variables }?: Config): any; } //# sourceMappingURL=variable.d.ts.map