import { EastType, Value, ValueTypeOf } from './types'; /** Return a human-readable string representation of any East value. You may optionally specify an indentation for multiline output. */ /** @internal */ export declare function eastToString(x: Value | null | undefined, indentation?: number | null, current_indentation?: number | null): string; /** @internal */ export declare function typeToString(type: EastType): string; /** @internal */ export declare function typeToStringShort(type: EastType): string; /** @internal */ export declare function stringFor(type: T): (value: ValueTypeOf) => string;