export declare class ReplayEntrypoint { readonly kind: "create" | "exercise"; readonly templateId?: { packageId?: string; moduleName?: string; entityName?: string; }; readonly contractId?: string; readonly choice?: string; readonly argument?: unknown; constructor(init: { kind: "create" | "exercise"; templateId?: { packageId?: string; moduleName?: string; entityName?: string; }; contractId?: string; choice?: string; argument?: unknown; }); }