import { TestModule } from '#src/extractTestsFromModule'; import { ObjectField } from './models/objectField.js'; /** * Extracts all properties from a module or object and wraps them in `ObjectField` instances. * * @param groupName - The parent group name for the extracted fields. * @param moduleToParse - The object or module to extract fields from. * @returns An array of `ObjectField` representing the properties of the object. */ export declare function parseObjectFields(groupName: string, moduleToParse: TestModule): ObjectField[]; //# sourceMappingURL=parseObjectFields.d.ts.map