import { TestParserOptions } from "../../options/testParserOptions.js"; /** * Checks if a property name matches the 'only' keyword or literal. * * @param name - The property name. * @param options - Parser options. * @returns True if the property indicates an 'only' execution filter. */ export declare function isOnlyField(name: string, options: TestParserOptions): boolean; /** * Checks if an object has an 'only' property (via metadata or literal). * * @param value - The object to check. * @param options - Parser options. * @returns True if the object has an 'only' property. */ export declare function hasOnly(value: any, options: TestParserOptions): boolean; /** * Checks if an object has an 'only' decorator with a supported expression. * * @param value - The object to check. * @returns True if the object has a valid 'only' decorator. */ export declare function hasOnlyDecorator(value: any): boolean; /** * Validates if an 'only' expression (number, boolean, or '*') is supported. * * @param expression - The expression value. * @returns True if the expression is a supported type. */ export declare function isOnlyExpressionSupported(expression: any): boolean; //# sourceMappingURL=testOnlyUtils.d.ts.map