import type { Either } from 'fp-ts/Either';
import type { Branded, Errors } from 'io-ts';
/**
* @since 0.0.1
*/
export interface Validatedbrand {
readonly validated: unique symbol;
}
/**
* @since 0.0.1
*/
export declare type Validated = Branded;
/**
* @since 0.0.1
*/
export interface Create {
(a: A): Either>;
}