import { AccessorChain } from "../data/createAccessorModelProxy"; import { Selector } from "../data/Selector"; /** Returns a selector that converts the value to boolean using !! */ export declare function truthy(arg: AccessorChain): Selector; /** Returns a selector that checks if the value is falsy using ! */ export declare function falsy(arg: AccessorChain): Selector; /** Returns a selector that checks if the value is strictly true (=== true) */ export declare function isTrue(arg: AccessorChain): Selector; /** Returns a selector that checks if the value is strictly false (=== false) */ export declare function isFalse(arg: AccessorChain): Selector; /** Returns a selector that checks if the value is not null or undefined (x != null) */ export declare function hasValue(arg: AccessorChain): Selector; /** Returns a selector that checks if a string or array is empty (null, undefined, or length === 0) */ export declare function isEmpty(arg: AccessorChain): Selector; /** Returns a selector that checks if a string or array is non-empty (not null/undefined and length > 0) */ export declare function isNonEmpty(arg: AccessorChain): Selector; /** Returns a selector that checks if the value is less than the given value */ export declare function lessThan(arg: AccessorChain, value: V): Selector; /** Returns a selector that checks if the value is less than or equal to the given value */ export declare function lessThanOrEqual(arg: AccessorChain, value: V): Selector; /** Returns a selector that checks if the value is greater than the given value */ export declare function greaterThan(arg: AccessorChain, value: V): Selector; /** Returns a selector that checks if the value is greater than or equal to the given value */ export declare function greaterThanOrEqual(arg: AccessorChain, value: V): Selector; /** Returns a selector that checks if the value equals the given value using == */ export declare function equal(arg: AccessorChain, value: V): Selector; /** Returns a selector that checks if the value does not equal the given value using != */ export declare function notEqual(arg: AccessorChain, value: V): Selector; /** Returns a selector that checks if the value strictly equals the given value using === */ export declare function strictEqual(arg: AccessorChain, value: V): Selector; /** Returns a selector that checks if the value strictly does not equal the given value using !== */ export declare function strictNotEqual(arg: AccessorChain, value: V): Selector; /** Returns a selector that formats the value using the specified format string. * Format strings use semicolon-separated syntax: "formatType;param1;param2" * @param arg - The accessor chain to the value * @param fmt - The format string * @param nullText - Optional text to display for null/undefined values * @example * format(m.price, "n;2") // formats as number with 2 decimal places * format(m.date, "d") // formats as date * format(m.value, "p;0;2") // formats as percentage with 0-2 decimal places * format(m.value, "n;2", "N/A") // shows "N/A" for null values */ export declare function format(arg: AccessorChain, fmt: string, nullText?: string): Selector; //# sourceMappingURL=exprHelpers.d.ts.map