import type { RegisterTxOneOf } from './RegisterTxOneOf'; import type { RegisterTxOneOf1 } from './RegisterTxOneOf1'; import type { RegisterTxOneOf2 } from './RegisterTxOneOf2'; export type RegisterTx = RegisterTxOneOf | RegisterTxOneOf1 | RegisterTxOneOf2; export declare function RegisterTxFromJSON(json: any): RegisterTx; export declare function RegisterTxFromJSONTyped(json: any, ignoreDiscriminator: boolean): RegisterTx; export declare function RegisterTxToJSON(json: any): any; export declare function RegisterTxToJSONTyped(value?: RegisterTx | null, ignoreDiscriminator?: boolean): any;