import type { DispatchResult } from './native-cli-shared.js'; type NativeScriptHandler = (args: string[], projectRoot: string) => Promise; /** * Shared entry point for the per-command Native launchers. Mirrors * `runClassicScript`: it strips `--json`/`--project-root`, resolves the project * root, delegates to a single command handler, and renders the result (JSON or * text). This keeps each command's launcher a thin shell that only loads its * own dependency graph instead of the full Native runtime. */ export declare function runNativeScript(command: string, handler: NativeScriptHandler, argv?: readonly string[]): Promise; export {}; //# sourceMappingURL=native-script-entry.d.ts.map