export interface MeshConnectorCommandResult { exitCode: number; output: string; } export type MeshConnectorExec = (argv: readonly string[]) => Promise; /** Read one systemd credential without accepting an arbitrary filesystem path. */ export declare function readMeshConnectorCredential(name?: string): string; /** * Register and connect one Cloudflare Mesh node. The management API token is * never present; this consumes only the connector-specific registration token * returned by the attended bootstrap. */ export declare function configureMeshConnector(input: { token: string; exec: MeshConnectorExec; }): Promise;