/** * Flags to enable or disable specific parser behaviors for identifying test metadata. */ export declare class TestParserFlags { /** * Whether to allow 'only' to be specified as a literal property (e.g., `test.only = true`). */ allowLiteralOnly: boolean; /** * Whether to allow 'title' to be specified as a literal property (e.g., `test.title = '...'`). */ allowLiteralTitle: boolean; /** * Whether to allow 'cases' to be specified as a literal property (e.g., `test.cases = [...]`). */ allowLiteralCases: boolean; /** * Initializes a new TestParserFlags instance. * @param parserFlags - Partial flags to override defaults. */ constructor(parserFlags: Partial | any); } //# sourceMappingURL=testParserFlags.d.ts.map