import type { CantonClient } from "./canton-client.js"; export declare class ExternalPartyActivationRequest { readonly partyId: string; readonly synchronizerId: string; readonly authorizingClients: readonly CantonClient[]; readonly activationTimeoutMs: number; readonly pollIntervalMs: number; constructor(init: { partyId: string; synchronizerId: string; authorizingClients?: readonly CantonClient[]; activationTimeoutMs?: number; pollIntervalMs?: number; }); }