// The file is hand written

import { Error, Item, Path, Schema } from "./S";

/* eslint-disable */
/* tslint:disable */

export type t<Output, Input = unknown> = Schema<Output, Input>;
export type schema<Output, Input = unknown> = Schema<Output, Input>;

export type item = Item;

export type Path_t = Path;

export type error = Error;
