export interface Mount {
    mountPath: string;
    imagePath: string;
}
export declare const getMountedImages: () => Promise<Mount[]>;
export declare const mountImage: (filePath: string) => Promise<Mount>;
export declare const unmountImage: (mount: Mount) => Promise<void>;
