import type { NodeFieldDirectiveInterface } from './NodeFieldDirectiveInterface.js'; import type { TestcaseDataInterface } from './TestcaseDataInterface.js'; /** * Writes meta data from field directives into the test case data object. * * For each directive in the provided array, this function extracts the instance ID, table name, * and field name from the directive's node, then appends an object containing the key, comment, * and other information to the corresponding field in the test case data structure. * * @param testcaseData - The object that stores all information for the current test case. * @param directives - An array of NodeFieldDirectiveInterface items representing the field directives to process. */ export declare function writeFieldData(testcaseData: TestcaseDataInterface, directives: NodeFieldDirectiveInterface[]): void; //# sourceMappingURL=writeFieldData.d.ts.map