import { Type } from "./type";
export declare function validate<T>(name: string | null, value: unknown, type: Type<T>): asserts value is T;
export declare function typeToString(type: Type): string;
export declare function inlineTypeToString(type: Type): string;