import { MicroPythonDevice } from '../src/main'; interface MountOpts { useDummyMicropython?: boolean; micropythonDevice?: MicroPythonDevice; tty?: string; host?: string; password?: string; mountPath?: string; } /** * Main code entry point. * * By default mounts the device to ./mnt/ on Linux/macOS, and to M:\ on Windows */ export declare const mount: (opts: MountOpts) => Promise; export {};