import { Type } from './reflection/type.js'; import { ReceiveType } from './reflection/reflection.js'; import { JitStack } from './serializer.js'; export type Resolver = (path: string) => Type | undefined; export declare function resolvePath(path: string, type?: ReceiveType): Type; export declare function pathResolver(type?: ReceiveType, jitStack?: JitStack): Resolver; export declare type __ΩResolver = any[];