/** * Built-in test functions for Jinja2 compatibility * Tests are used with the "is" operator: {{ x is divisibleby(3) }} */ export type TestFunction = (value: any, ...args: any[]) => boolean; export declare const divisibleby: TestFunction; export declare const even: TestFunction; export declare const odd: TestFunction; export declare const number: TestFunction; export declare const integer: TestFunction; export declare const float: TestFunction; export declare const gt: TestFunction; export declare const ge: TestFunction; export declare const lt: TestFunction; export declare const le: TestFunction; export declare const greaterthan: TestFunction; export declare const lessthan: TestFunction; export declare const defined: TestFunction; export declare const undefined: TestFunction; export declare const none: TestFunction; export declare const boolean: TestFunction; export declare const string: TestFunction; export declare const mapping: TestFunction; export declare const iterable: TestFunction; export declare const sequence: TestFunction; export declare const callable: TestFunction; export declare const lower: TestFunction; export declare const upper: TestFunction; export declare const empty: TestFunction; export declare const in_: TestFunction; export declare const eq: TestFunction; export declare const ne: TestFunction; export declare const sameas: TestFunction; export declare const equalto: TestFunction; export declare const truthy: TestFunction; export declare const falsy: TestFunction; export declare const true_: TestFunction; export declare const false_: TestFunction; export declare const builtinTests: Record; //# sourceMappingURL=index.d.ts.map