import { Codec, Constructor, InterfaceTypes } from '../../types'; export declare function typeToConstructor(type: InterfaceTypes | Constructor): Constructor; /** * @description takes an input map of the form `{ [string]: string | Constructor }` and returns a map of `{ [string]: Conbstructor }` */ export declare function mapToTypeMap(input: Record): Record;