WasmAccessOperations: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): WasmAccessOperations;
    encode(message: WasmAccessOperations, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: WasmAccessOperationsAmino): WasmAccessOperations;
    fromAminoMsg(object: WasmAccessOperationsAminoMsg): WasmAccessOperations;
    fromPartial(object: {
        messageName?: string;
        wasmOperations?: {
            operation?: {
                accessType?: AccessType;
                identifierTemplate?: string;
                resourceType?: ResourceType;
            };
            selector?: string;
            selectorType?: AccessOperationSelectorType;
        }[];
    }): WasmAccessOperations;
    fromProtoMsg(message: WasmAccessOperationsProtoMsg): WasmAccessOperations;
    toAmino(message: WasmAccessOperations): WasmAccessOperationsAmino;
    toAminoMsg(message: WasmAccessOperations): WasmAccessOperationsAminoMsg;
    toProto(message: WasmAccessOperations): Uint8Array;
    toProtoMsg(message: WasmAccessOperations): WasmAccessOperationsProtoMsg;
}