#!/usr/bin/env bun export interface UpdateOptions { /** Path to parsers-config.json */ configPath: string; /** Directory where .wasm and .scm files will be downloaded */ assetsDir: string; /** Path where the generated TypeScript file will be written */ outputPath: string; } declare function main(options?: Partial): Promise; export { main as updateAssets };