import { ComponentUIDL, UIDLElement, Mapping, GeneratorOptions } from '@teleporthq/teleport-types'; /** * The resolver takes the input UIDL and converts all the abstract node types into * concrete node types, based on the mappings you provide */ export default class Resolver { private mapping; constructor(mapping?: Mapping | Mapping[]); addMapping(mapping: Mapping): void; resolveUIDL(input: ComponentUIDL, options?: GeneratorOptions): ComponentUIDL; resolveElement(element: UIDLElement, options?: GeneratorOptions): UIDLElement; } //# sourceMappingURL=resolver.d.ts.map