import type { Database } from "bun:sqlite"; import type { Machine } from "../types/index.js"; export declare function currentHostname(): string; export declare function currentOs(): string; export declare function currentArch(): string; export declare function registerMachine(hostnameStr?: string, os?: string, archStr?: string, db?: Database): Machine; export declare function updateMachineApplied(hostnameStr?: string, db?: Database): void; export declare function listMachines(db?: Database): Machine[]; //# sourceMappingURL=machines.d.ts.map