/** * NOOP chain with *any* type */ export declare const any: import("./types").Chain; /** * NOOP chain with *unknown* type */ export declare const unknown: import("./types").Chain; /** * Validates input value not a null or undefined */ export declare const required: import("./types").Chain; /** * Stops chain if value is null or undefined */ export declare const optional: import("./types").Chain; /** * Stops chain if value is null or undefined and outputs provided *value* * @param value */ export declare const byDefault: (value: T) => import("./types").Chain; /** * Validates input value is string */ export declare const string: import("./types").Chain; /** * Validates input value is number */ export declare const number: import("./types").Chain; /** * Validates input value is boolean */ export declare const boolean: import("./types").Chain;