export interface ResolvePhpCodemodIngestionScriptOptions { readonly importMetaUrl?: string; } export interface RunPhpCodemodIngestionOptions { readonly workspaceRoot: string; readonly files: readonly string[]; readonly phpBinary?: string; readonly scriptPath?: string; readonly configurationPath?: string; readonly enableDiagnostics?: boolean; readonly importMetaUrl?: string; readonly autoloadPaths?: readonly string[]; } export interface PhpCodemodIngestionResult { readonly lines: readonly string[]; readonly exitCode: number; readonly stderr: string; } export declare function resolvePhpCodemodIngestionScriptPath(options?: ResolvePhpCodemodIngestionScriptOptions): string; export declare function runPhpCodemodIngestion(options: RunPhpCodemodIngestionOptions): Promise;