import { type CreateRunnerInput, type CreateRunnerResult, type DeleteRunnerResult, type ListRunnerJobsResult, type ListRunnersResult, type Runner, type RunnerArch, type RunnerJob, type RunnerPlatform } from '@sylphx/contract'; import type { Client } from './client.js'; export type { CreateRunnerInput as RegisterInput, CreateRunnerResult as RegisterResult, Runner, RunnerArch, RunnerJob, RunnerPlatform, }; export type RunnerView = Runner; export declare const register: (client: Client, input: CreateRunnerInput) => Promise; export declare const list: (client: Client) => Promise; export declare const listJobs: (client: Client, runnerId: string) => Promise; export declare const unregister: (client: Client, runnerId: string) => Promise; //# sourceMappingURL=runners.d.ts.map