import type { NodeStaticDirectiveInterface } from './NodeStaticDirectiveInterface.js'; import type { TestcaseDataInterface } from './TestcaseDataInterface.js'; /** * Writes static data from the provided directives into the test case data object. * * For each directive, the function extracts the instance ID, table name, and field name, * then stores the static value in the test case data structure under the corresponding keys. * * @param testcaseData - The object that stores all the information for this test case. * @param directives - An array of NodeStaticDirectiveInterface items representing the static data directives to be processed. */ export declare function writeStaticData(testcaseData: TestcaseDataInterface, directives: NodeStaticDirectiveInterface[]): void; //# sourceMappingURL=writeStaticData.d.ts.map