import type { ExtractArrays } from '@code-pushup/utils'; import type { ExecutableCode } from './types.js'; export declare function normalizeExecutableCode(executableCode: ExecutableCode): ExtractArrays; export declare function normalizeItemOrArray(itemOrArray: T | T[]): T[]; export declare function formatObjectToFormattedJsString(jsonObj?: { [key: string]: unknown; } | unknown[]): string | undefined; export declare function formatArrayToLinesOfJsString(lines?: string[], separator?: string): string | undefined; export declare function formatArrayToJSArray(lines?: string[]): string | undefined;