/**
 * Submit signed external party topology transactions
 *
 * Submits the topology transactions that were generated by generateExternalPartyTopology along with their signatures.
 *
 * @example
 *   ```typescript
 *   const result = await client.submitExternalPartyTopology({
 *     public_key: 'hex-encoded-ed25519-public-key',
 *     signed_topology_txs: [
 *       {
 *         topology_tx: 'base64-encoded-transaction',
 *         signed_hash: 'hex-encoded-signature'
 *       }
 *     ]
 *   });
 *   ```;
 */
export declare const SubmitExternalPartyTopology: new (client: import("../../../../../core").BaseClient) => import("../../../../../core").ApiOperation<{
    public_key: string;
    signed_topology_txs: import("../../../../../generated/apps/validator/src/main/openapi/validator-internal").components["schemas"]["SignedTopologyTx"][];
}, {
    party_id: string;
}>;
//# sourceMappingURL=submit-external-party-topology.d.ts.map