/** * Parse raw args passed to {@link runPrisma} from a raw CLI. * * @category Internal */ export declare function parseRawArgs( /** The `import.meta` from your script file that's directly calling this. */ importMeta: ImportMeta, rawArgs: ReadonlyArray): string[]; /** * Run the Prisma CLI but intercept the `prisma migrate dev` and `prisma migrate reset` commands to * use a PGlite database. All other commands are passed directly to the Prisma CLI. * * @category CLI */ export declare function runPrisma(cliArgs: ReadonlyArray, env?: Record): Promise;