import { GeneratedType, Registry } from "@cosmjs/proto-signing"; import { MsgClaimClaimable, MsgUpdateParams } from "./claim"; export declare const registry: ReadonlyArray<[string, GeneratedType]>; export declare const load: (protoRegistry: Registry) => void; export declare const MessageComposer: { encoded: { claimClaimable(value: MsgClaimClaimable): { typeUrl: string; value: Uint8Array; }; updateParams(value: MsgUpdateParams): { typeUrl: string; value: Uint8Array; }; }; withTypeUrl: { claimClaimable(value: MsgClaimClaimable): { typeUrl: string; value: MsgClaimClaimable; }; updateParams(value: MsgUpdateParams): { typeUrl: string; value: MsgUpdateParams; }; }; toJSON: { claimClaimable(value: MsgClaimClaimable): { typeUrl: string; value: { sender: string; }; }; updateParams(value: MsgUpdateParams): { typeUrl: string; value: { authority: string; params: { airdropStartTime: string; durationUntilDecay: { seconds: string; nanos: number; }; durationOfDecay: { seconds: string; nanos: number; }; claimDenom: string; durationVestingPeriods: { seconds: string; nanos: number; }[]; }; }; }; }; fromJSON: { claimClaimable(value: any): { typeUrl: string; value: MsgClaimClaimable; }; updateParams(value: any): { typeUrl: string; value: MsgUpdateParams; }; }; fromPartial: { claimClaimable(value: MsgClaimClaimable): { typeUrl: string; value: MsgClaimClaimable; }; updateParams(value: MsgUpdateParams): { typeUrl: string; value: MsgUpdateParams; }; }; };