import { Creatlach } from "./creatlach"; import { Callable, Comparable, Obj, ObjIntf, Value } from "./values"; export declare function isTrue(v: Value): boolean; export declare function isEqual(a: Value, b: Value): boolean; export declare function isCallable(v: Value): v is Callable; export declare function isObj(v: Value): v is Obj; export declare function isObjIntf(v: Value): v is ObjIntf; export declare function isNumber(v: Value): v is number; export declare function isBool(v: Value): v is boolean; export declare function isTéacs(v: Value): v is string; export declare function isComparable(v: Value): v is Comparable; export declare function isLiosta(v: Value): v is Value[]; export declare function isCreatlach(v: Value): v is Creatlach;