import { Decorator, DecoratorDescription } from "./descriptions/decorator"; import { IndexDescription, IndexInfo } from "./descriptions/IndexInfo"; import { ConstructorInfo, ConstructorDescription, MethodInfo, MethodDescription } from "./descriptions/methodInfo"; import { PropertyInfo, PropertyDescription } from "./descriptions/propertyInfo"; export declare const Mapper: { /** * @internal * @param d */ mapDecorators(d: DecoratorDescription): Decorator; /** * @internal * @param p */ mapProperties(p: PropertyDescription): PropertyInfo; /** * @internal * @param i */ mapIndexes(i: IndexDescription): IndexInfo; /** * @internal * @param c */ mapConstructors(c: ConstructorDescription): ConstructorInfo; /** * @internal * @param m */ mapMethods(m: MethodDescription): MethodInfo; };