import { ClassInstanceField } from './models/classInstanceField.js'; /** * Extracts methods and properties from a class prototype and wraps them in `ClassInstanceField` instances. * This function traverses the inheritance chain to collect all inherited members. * * @param groupName - The parent group name. * @param classInstance - The instance of the class to parse. * @returns An array of `ClassInstanceField` instances representing the class's members. */ export declare function parserClassInstFields(groupName: string, classInstance: any): ClassInstanceField[]; //# sourceMappingURL=parseClassInstFields.d.ts.map