export { types }; declare const types: readonly Type[]; type Type = { is: (val: unknown) => asserts val is ValueType; match: (str: string) => boolean; serialize: (val: ValueType, serializer: (val: IntermediateType) => string) => string; deserialize: (str: string, parser: (str: string) => IntermediateType) => ValueType; };