/** * Small runtime-detection helpers shared across commands. */ /** * True when running as the prebuilt standalone binary (bun build --compile), * where process.execPath points at the `memi` binary itself rather than node. * In dev / npm installs, execPath is the node binary. */ export declare function isStandaloneBinary(): boolean;