import type { Printable } from 'tree-dump'; import type { ResolveType, Type } from '../type/types'; export declare class Value implements Printable { data: ResolveType; type?: T | undefined; constructor(data: ResolveType, type?: T | undefined); name(): string; toString(tab?: string): string; } export declare const unknown: (data: unknown) => Value; //# sourceMappingURL=Value.d.ts.map