import type { LocalJwksSigningKey } from '@agent-relay/sdk/provisioner/local-jwks'; interface ProvisionConfig { relayauthRoot: string; relayfileRoot: string; tokenSigningKey: LocalJwksSigningKey; workspace: string; projectDir: string; portAuth: number; portFile: number; } interface ProvisionResult { agents: Array<{ name: string; tokenPath: string; scopes: string[]; }>; ignoredCount: number; readonlyCount: number; seededCount: number; } export declare function provision(config: ProvisionConfig): Promise; export {}; //# sourceMappingURL=provision.d.ts.map