import { TestParserOptions } from "../../options/testParserOptions.js"; /** * Checks if a value has a custom title (via metadata or literal property). * * @param value - The object or function to check. * @param options - Parser options. * @returns True if the value has a title defined. */ export declare function hasTitle(value: any, options: TestParserOptions): boolean; /** * Retrieves the custom title from a value. * * @param value - The object or function. * @param options - Parser options. * @returns The title string or boolean. */ export declare function getTitle(value: any, options: TestParserOptions): string | boolean; /** * Checks if a value has a title defined specifically via a decorator. * * @param value - The object or function. * @returns True if a title string is present in the keywords property. */ export declare function hasTitleDecorator(value: any): boolean; //# sourceMappingURL=testTitleUtils.d.ts.map