import type { MockPayload } from '../../intermediate/mock-payload'; import type { StringMap } from '../../intermediate/utils'; export declare const MOCK_PAYLOAD_ARRAY_NAME = "mockPayloads"; /** * NOTE: The returned code string will not have any imports resolved so callers * need to call resolveImports() with the return value. */ export declare function generateMockPayloadsArrayCode(mockPayloads: MockPayload[], mockDataDir: string): string; /** * NOTE: The returned code string will not have any imports resolved so callers * need to call resolveImports() with the return value. */ export declare function generateMockPayloadModules(mockPayloads: MockPayload[], mockDataDir: string): StringMap; export declare function getMockDataVariableName(mockPayloadId: string): string;